/* Blog Shortcode Styles - extracted from functions.php v5.1.1 */
/* Default 3 columns — actual column count is set dynamically via wp_add_inline_style */
.xe-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.xe-blog-card {
    display: flex;
    flex-direction: column;
}
.xe-blog-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}
.xe-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.xe-blog-card:hover .xe-blog-card-image img {
    transform: scale(1.05);
}
.xe-blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fb8104 0%, #e67300 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.xe-blog-card-image-placeholder svg {
    width: 48px;
    height: 48px;
    fill: rgba(255,255,255,0.3);
}
.xe-blog-card-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.xe-blog-card-meta span {
    color: #fb8104;
    font-weight: 600;
}
.xe-blog-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
}
.xe-blog-card-title a {
    color: inherit;
    text-decoration: none;
}
.xe-blog-card-title a:hover {
    color: #fb8104;
}
.xe-blog-card-readmore {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}
.xe-blog-card-readmore:hover {
    color: #fb8104;
}
@media (max-width: 991px) {
    .xe-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .xe-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
