/* Hero Section */
.hero-section2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-narrow-l);
    margin-bottom: var(--spacing-standard-l);
}

.hero-icon2 {
    width: 144px;
    height: 144px;
    flex-shrink: 0;
}

.hero-icon2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.25));
}

.hero-content2 {
    flex: 1;
    padding: var(--spacing-narrow-s) 0;
}

.hero-title2 {
    font-family: var(--font-manrope);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-title-xl);
    color: var(--color-primary-full);
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-standard-s);
}

.hero-subtitle2 {
    font-family: var(--font-manrope);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-title-large);
    color: var(--color-primary-full);
    line-height: var(--line-height-tight);
}

/* Main Content Card */
.main-content-card {
    display: flex;
    background: var(--color-white);
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: var(--spacing-standard-l);
}

.profile-image-section {
    flex-shrink: 0;
    width: 200px;
    min-height: 267px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-text-section {
    flex: 1;
    padding: var(--spacing-standard-m);
    box-shadow: var(--shadow-card);
}

.main-text {
    font-family: var(--font-inter);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-content);
    color: var(--color-black);
    line-height: var(--line-height-normal);
    text-align: justify;
}

.main-text p {
    margin-bottom: var(--spacing-narrow-m);
}

.main-text p:last-child {
    margin-bottom: 0;
}

/* Bottom Cards Section */
.bottom-cards {
    display: flex;
    gap: var(--spacing-narrow-l);
}

.bottom-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bottom-card-title {
    font-family: var(--font-manrope);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-title-large);
    color: var(--color-primary-full);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-narrow-l);
}

.bottom-card-content {
    background: var(--color-primary-gradient);
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-card);
    padding: var(--spacing-narrow-l);
    height: 182px;
    display: flex;
    flex-direction: column;
}

.bottom-card-text {
    font-family: var(--font-inter);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-content);
    color: var(--color-white);
    line-height: var(--line-height-normal);
    flex: 1;
    margin-bottom: var(--spacing-narrow-l);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.read-more-button {
    background: var(--color-white-gradient);
    color: var(--color-primary-full);
    border: none;
    border-radius: 50px;
    padding: var(--spacing-narrow-s) var(--spacing-narrow-l);
    font-family: var(--font-manrope);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-content);
    line-height: var(--line-height-button);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: auto;
    height: auto;
    box-shadow: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-button:hover {
    background: var(--color-white-gradient);
    color: var(--color-primary-full);
    font-size: var(--font-size-title-large);
    box-shadow: var(--shadow-card);
    transform: scale(1.05);
}




/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {

    .hero-title2 {
        font-size: 28px;
    }

    .hero-section2 {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-narrow-m);
    }

    .hero-icon2 {
        width: 96px;
        height: 96px;
        align-self: center;
    }

    .main-content-card {
        flex-direction: column;
    }

    .main-text-section {
        padding: var(--spacing-narrow-l);
    }

    .bottom-cards {
        flex-direction: column;
        gap: var(--spacing-standard-m);
    }


}

/* Mobile (up to 768px) */
@media (max-width: 768px) {

    .hero-title2 {
        font-size: 24px;
    }

    .hero-section2 {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-narrow-m);
        margin-bottom: var(--spacing-narrow-l);
    }

    .hero-icon2 {
        width: 72px;
        height: 72px;
        align-self: center;
    }

    .main-content-card {
        flex-direction: column;
    }

    .main-text-section {
        padding: var(--spacing-narrow-m);
    }

    .bottom-cards {
        flex-direction: column;
        gap: var(--spacing-standard-m);
    }

}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {

    .hero-title2 {
        font-size: 20px;
    }

    .main-text-section {
        padding: var(--spacing-narrow-s);
    }

    .bottom-card-content {
        padding: var(--spacing-narrow-m);
    }
}