/* Modern Blog Card Styles */
.blog-card {
    background: #fdf9f4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-thumb .category {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #f8c4a8 0%, #f4d185 100%);
    padding: 5px 15px;
    border-radius: 0 8px 0 0;
}

.blog-thumb .category a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #483452;
    transition: color 0.3s ease;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #f4a28c;
}

.blog-content p {
    margin-bottom: 20px;
    color: #000000;
}

.meta-info {
    font-size: 13px;
    color: #d2b48c;
}

.meta-info span {
    margin-right: 15px;
}

.meta-info i {
    margin-right: 5px;
    color: #f4a28c;
}

.read-more {
    color: #f4a28c;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #f5b1c3;
    text-decoration: none;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Post Styles */
.blog-single .post-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-single .post-featured-image img {
    width: 100%;
    height: auto;
}

.blog-single .post-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-single .post-meta {
    font-size: 14px;
    color: #d2b48c;
    margin-bottom: 30px;
}

.blog-single .post-content {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.blog-single .post-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-single .post-content p {
    margin-bottom: 25px;
}

.blog-single .post-tags {
    margin-top: 40px;
    margin-bottom: 30px;
}

.blog-single .post-tags a {
    display: inline-block;
    background: #fdf9f4;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-single .post-tags a:hover {
    background: #f8c4a8;
    color: #fff;
}

/* Widget Styles */
.widget {
    margin-bottom: 40px;
    padding: 25px;
    background: #fdf9f4;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.widget ul li a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget ul li a:hover {
    color: #f4a28c;
}

.widget ul li span {
    float: right;
    color: #d2b48c;
}

.tagcloud a {
    display: inline-block;
    background: #fdf9f4;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tagcloud a:hover {
    background: #f8c4a8;
    color: #fff;
}

/* Blog Header */
.blog-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.padding {
    padding: 80px 0;
}

/* Blockquote styling */
blockquote {
    border-left: 4px solid #2575fc;
    padding: 15px 20px;
    margin: 30px 0;
    background: #fdf9f4;
    font-style: italic;
} 