/* ===== RESET FÜR BLOG SECTION ===== */
.hero,
.hero *,
.cards-container,
.cards-container *,
.blog-modal-overlay,
.blog-modal-overlay * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
        sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(30px);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ===== CARDS CONTAINER - 2 NEBENEINANDER ===== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin: 80px auto;
    padding: 0 20px;
    background: #ffffff;
}

/* ===== BLOG CARD ===== */
.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.blog-card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #5b4eee 0%, #4b3fdd 100%);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.15) rotate(2deg);
    opacity: 0.85;
}

.blog-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #5b4eee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.blog-card-icon-overlay {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 10;
}

.blog-card:hover .blog-card-icon-overlay {
    transform: rotate(360deg) scale(1.1);
}

.blog-card-content {
    padding: 50px 30px 30px;
}

.blog-card-title {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.blog-card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-card-features {
    list-style: none;
    margin-bottom: 30px;
}

.blog-card-features li {
    color: #555;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.blog-card-features li:last-child {
    border-bottom: none;
}

.blog-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5b4eee;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.blog-card-features li:hover {
    padding-left: 40px;
    color: #5b4eee;
}

.blog-card-features li:hover::before {
    transform: scale(1.3);
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-card-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-card-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.85rem;
}

.blog-card-stat-icon {
    font-size: 1.1rem;
}

.blog-card-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #5b4eee 0%, #4b3fdd 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 78, 238, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.blog-card-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(91, 78, 238, 0.6);
    background: linear-gradient(135deg, #4b3fdd 0%, #3b2fcd 100%);
}

.blog-card-button::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-card-button:hover::after {
    transform: translateX(5px);
}

/* ===== CARD COLOR VARIANTS ===== */
.blog-card:nth-child(2) .blog-card-image-wrapper {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.blog-card:nth-child(2) .blog-card-badge {
    color: #38f9d7;
}
.blog-card:nth-child(2) .blog-card-features li::before,
.blog-card:nth-child(2) .blog-card-features li:hover {
    color: #38f9d7;
}
.blog-card:nth-child(2) .blog-card-button {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(56, 249, 215, 0.4);
}
.blog-card:nth-child(2) .blog-card-button:hover {
    background: linear-gradient(135deg, #38f9d7 0%, #28e9c7 100%);
    box-shadow: 0 6px 25px rgba(56, 249, 215, 0.6);
}

.blog-card-career .blog-card-image-wrapper {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.blog-card-career .blog-card-badge {
    color: #fa709a;
}
.blog-card-career .blog-card-features li::before,
.blog-card-career .blog-card-features li:hover {
    color: #fa709a;
}
.blog-card-career .blog-card-button {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}
.blog-card-career .blog-card-button:hover {
    background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
    box-shadow: 0 6px 25px rgba(250, 112, 154, 0.6);
}

.blog-card-preparation .blog-card-image-wrapper {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}
.blog-card-preparation .blog-card-badge {
    color: #30cfd0;
}
.blog-card-preparation .blog-card-features li::before,
.blog-card-preparation .blog-card-features li:hover {
    color: #30cfd0;
}
.blog-card-preparation .blog-card-button {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 4px 15px rgba(48, 207, 208, 0.4);
}
.blog-card-preparation .blog-card-button:hover {
    background: linear-gradient(135deg, #330867 0%, #30cfd0 100%);
    box-shadow: 0 6px 25px rgba(48, 207, 208, 0.6);
}

.blog-card-language .blog-card-image-wrapper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.blog-card-language .blog-card-badge {
    color: #f5576c;
}
.blog-card-language .blog-card-features li::before,
.blog-card-language .blog-card-features li:hover {
    color: #f5576c;
}
.blog-card-language .blog-card-button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}
.blog-card-language .blog-card-button:hover {
    background: linear-gradient(135deg, #f5576c 0%, #e5466c 100%);
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.6);
}

.blog-card-culture .blog-card-image-wrapper {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}
.blog-card-culture .blog-card-badge {
    color: #fcb69f;
}
.blog-card-culture .blog-card-features li::before,
.blog-card-culture .blog-card-features li:hover {
    color: #fcb69f;
}
.blog-card-culture .blog-card-button {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 4px 15px rgba(252, 182, 159, 0.4);
}
.blog-card-culture .blog-card-button:hover {
    background: linear-gradient(135deg, #fcb69f 0%, #fca68f 100%);
    box-shadow: 0 6px 25px rgba(252, 182, 159, 0.6);
}

/* ===== MODAL ===== */
.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.blog-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.blog-modal {
    background: white;
    border-radius: 25px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.blog-modal-overlay.active .blog-modal {
    transform: scale(1);
}

.blog-modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.blog-modal-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: #1a1a1a;
}

.blog-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: white;
}

.blog-modal-icon {
    position: absolute;
    bottom: -40px;
    left: 40px;
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.blog-modal-content {
    padding: 60px 40px 40px;
}

.blog-modal-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-modal-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.blog-modal-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-modal-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #5b4eee;
    transition: all 0.3s ease;
}

.blog-modal-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-modal-section-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-modal-section-icon {
    font-size: 1.8rem;
}

.blog-modal-section-content {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.blog-modal-section-list {
    list-style: none;
    margin-top: 15px;
}

.blog-modal-section-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.blog-modal-section-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #5b4eee;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== MODAL COLOR VARIANTS ===== */
.blog-modal-overlay.color-1 .blog-modal-section {
    border-left-color: #5b4eee;
}
.blog-modal-overlay.color-1 .blog-modal-section-list li::before {
    color: #5b4eee;
}

.blog-modal-overlay.color-2 .blog-modal-section {
    border-left-color: #38f9d7;
}
.blog-modal-overlay.color-2 .blog-modal-section-list li::before {
    color: #38f9d7;
}

.blog-modal-overlay.color-3 .blog-modal-section {
    border-left-color: #fa709a;
}
.blog-modal-overlay.color-3 .blog-modal-section-list li::before {
    color: #fa709a;
}

.blog-modal-overlay.color-4 .blog-modal-section {
    border-left-color: #30cfd0;
}
.blog-modal-overlay.color-4 .blog-modal-section-list li::before {
    color: #30cfd0;
}

.blog-modal-overlay.color-5 .blog-modal-section {
    border-left-color: #f5576c;
}
.blog-modal-overlay.color-5 .blog-modal-section-list li::before {
    color: #f5576c;
}

.blog-modal-overlay.color-6 .blog-modal-section {
    border-left-color: #fcb69f;
}
.blog-modal-overlay.color-6 .blog-modal-section-list li::before {
    color: #fcb69f;
}

/* ===== MODAL SCROLLBAR ===== */
.blog-modal::-webkit-scrollbar {
    width: 10px;
}

.blog-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blog-modal::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.blog-modal::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Desktop Medium (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        max-width: 1200px;
    }

    .blog-card-content {
        padding: 45px 28px 28px;
    }

    .blog-card-title {
        font-size: 1.65rem;
    }
}

/* Tablet Landscape (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    .hero {
        min-height: 85vh;
        padding: 60px 20px;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 60px auto;
        max-width: 1000px;
    }

    .blog-card-image-wrapper {
        height: 260px;
    }

    .blog-card-icon-overlay {
        width: 75px;
        height: 75px;
        font-size: 2.3rem;
        left: 25px;
    }

    .blog-card-content {
        padding: 42px 26px 26px;
    }

    .blog-card-title {
        font-size: 1.6rem;
    }

    .blog-card-description {
        font-size: 0.98rem;
    }

    .blog-card-features li {
        font-size: 0.93rem;
    }

    .blog-modal-content {
        padding: 50px 35px 35px;
    }

    .blog-modal-title {
        font-size: 2.2rem;
    }

    .blog-modal-section {
        padding: 28px;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
    .hero {
        min-height: 75vh;
        padding: 50px 20px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 35px;
        margin: 50px auto;
        max-width: 650px;
    }

    .blog-card-image-wrapper {
        height: 280px;
    }

    .blog-card-icon-overlay {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
        left: 28px;
    }

    .blog-card:hover {
        transform: translateY(-8px);
    }

    .blog-card-badge {
        padding: 9px 18px;
        font-size: 0.72rem;
    }

    .blog-card-content {
        padding: 45px 32px 32px;
    }

    .blog-card-title {
        font-size: 1.7rem;
    }

    .blog-card-description {
        font-size: 1.02rem;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .blog-card-stats {
        justify-content: center;
    }

    .blog-card-button {
        width: 100%;
        justify-content: center;
    }

    .blog-modal {
        width: 95%;
    }

    .blog-modal-header {
        height: 260px;
    }

    .blog-modal-content {
        padding: 48px 32px 32px;
    }

    .blog-modal-title {
        font-size: 2rem;
    }

    .blog-modal-section {
        padding: 26px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero {
        min-height: 70vh;
        padding: 50px 20px;
    }

    .circle-1 {
        width: 220px;
        height: 220px;
    }

    .circle-2 {
        width: 160px;
        height: 160px;
    }

    .circle-3 {
        width: 110px;
        height: 110px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 11px 26px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 45px auto;
        padding: 0 18px;
    }

    .blog-card-image-wrapper {
        height: 260px;
    }

    .blog-card-icon-overlay {
        width: 70px;
        height: 70px;
        font-size: 2.1rem;
        left: 24px;
        bottom: -26px;
    }

    .blog-card-badge {
        padding: 9px 17px;
        font-size: 0.7rem;
    }

    .blog-card-content {
        padding: 42px 28px 28px;
    }

    .blog-card-title {
        font-size: 1.6rem;
    }

    .blog-card-description {
        font-size: 1rem;
    }

    .blog-card-features li {
        font-size: 0.95rem;
        padding: 11px 0 11px 33px;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 16px;
    }

    .blog-card-stats {
        justify-content: center;
    }

    .blog-card-button {
        width: 100%;
        justify-content: center;
        padding: 13px 30px;
    }

    .blog-modal {
        width: 95%;
    }

    .blog-modal-header {
        height: 240px;
    }

    .blog-modal-icon {
        width: 85px;
        height: 85px;
        font-size: 2.6rem;
        left: 30px;
        bottom: -32px;
    }

    .blog-modal-content {
        padding: 45px 26px 26px;
    }

    .blog-modal-title {
        font-size: 1.85rem;
    }

    .blog-modal-subtitle {
        font-size: 1.05rem;
    }

    .blog-modal-section {
        padding: 24px;
    }
}

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .hero {
        min-height: 65vh;
        padding: 40px 15px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px auto;
        padding: 0 15px;
    }

    .blog-card-image-wrapper {
        height: 240px;
    }

    .blog-card-icon-overlay {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        left: 20px;
        bottom: -22px;
    }

    .blog-card-badge {
        padding: 8px 16px;
        font-size: 0.68rem;
        gap: 6px;
    }

    .blog-card-content {
        padding: 38px 24px 24px;
    }

    .blog-card-title {
        font-size: 1.5rem;
    }

    .blog-card-description {
        font-size: 0.98rem;
    }

    .blog-card-features li {
        font-size: 0.92rem;
        padding: 10px 0 10px 32px;
    }

    .blog-card-footer {
        padding-top: 22px;
        flex-direction: column;
        gap: 16px;
    }

    .blog-card-stats {
        gap: 16px;
        justify-content: center;
    }

    .blog-card-stat {
        font-size: 0.85rem;
    }

    .blog-card-button {
        width: 100%;
        justify-content: center;
        padding: 13px 30px;
    }

    .blog-modal-overlay {
        padding: 15px;
    }

    .blog-modal {
        width: 100%;
        max-height: 90vh;
        border-radius: 22px;
    }

    .blog-modal-header {
        height: 220px;
        border-radius: 22px 22px 0 0;
    }

    .blog-modal-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
        left: 22px;
        bottom: -28px;
    }

    .blog-modal-close {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
        top: 14px;
        right: 14px;
    }

    .blog-modal-content {
        padding: 42px 22px 22px;
    }

    .blog-modal-title {
        font-size: 1.7rem;
    }

    .blog-modal-subtitle {
        font-size: 1rem;
    }

    .blog-modal-sections {
        gap: 25px;
    }

    .blog-modal-section {
        padding: 22px;
    }

    .blog-modal-section-title {
        font-size: 1.25rem;
        gap: 10px;
    }

    .blog-modal-section-icon {
        font-size: 1.6rem;
    }

    .blog-modal-section-content {
        font-size: 0.97rem;
    }

    .blog-modal-section-list li {
        padding: 9px 0 9px 28px;
        font-size: 0.96rem;
    }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .blog-card-image-wrapper {
        height: 220px;
    }

    .blog-card-icon-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.85rem;
        left: 18px;
        bottom: -20px;
    }

    .blog-card-content {
        padding: 35px 20px 20px;
    }

    .blog-card-title {
        font-size: 1.35rem;
    }

    .blog-card-description {
        font-size: 0.94rem;
    }

    .blog-card-features li {
        font-size: 0.9rem;
    }

    .blog-modal-title {
        font-size: 1.5rem;
    }

    .blog-modal-section-title {
        font-size: 1.15rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
