/* ==========================================================================
   EventzPro Premium Card Styles
   ========================================================================== */

/* Section Background */
.modern-blog-section {
    background-color: #fdfdfd;
}

/* Card Container */
.modern-blog-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Soft lift, gold border, and glow */
.modern-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
    border-color: #d4af37; /* Theme Gold */
}

/* Image Wrapper */
.blog-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

/* Image Styling with smooth scale on hover */
.custom-rounded-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-blog-card:hover .custom-rounded-img {
    transform: scale(1.05);
}

/* Content Area */
.blog-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category Tag */
.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4af37; /* Theme Gold */
    margin-bottom: 10px;
}

/* Title Styling */
.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d4af37; /* Theme Gold */
}

/* Meta Data (Date & Location) */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Meta Icons (Using basic CSS shapes for the dots to separate them cleanly) */
.blog-meta span:not(:last-child)::after {
    content: "•";
    color: #d4af37;
    margin-left: 15px;
}

/* Summary Text */
.blog-summary {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0;
}