.mod-megamenu>.mod-megamenu--item:last-child {
    margin-left: auto;
}

.mod-megamenu>.mod-megamenu--item:last-child>.mod-megamenu--item-anchor {
    padding-right: 0;
}

/* BLOG STYLES */



.article-hero {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 8px;
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 2rem;
    color: white;
}

.article-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.4rem;
    font-style: italic;
    color: #4b5563;
    margin: 1.5rem 0 2rem;
    border-left: 4px solid #1f2937;
    padding-left: 1.5rem;
}

.article-intro {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 2.5rem;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6b7280;
}

.section-title {
    font-size: 1.8rem;
    color: #111827;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #374151;
}

.highlight-box {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.highlight-box h3 {
    color: #f3f4f6;
    margin-top: 0;
    font-size: 1.5rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.highlight-box li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.highlight-box li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d1d5db;
    font-weight: bold;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: #6b7280;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tip-number {
    display: inline-block;
    background: #1f2937;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: #111827;
    margin: 0.5rem 0 1rem;
    font-size: 1.2rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.cta-section {
    background: linear-gradient(135deg, #e10098 0%, #ff1ab1 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    color: white;
}

.cta-button {
    display: inline-block;
    background: #1f2937;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.closing-question {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: #1f2937;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 500;
}

.quote-callout {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 5px solid #6b7280;
    background: #f9fafb;
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}