/* Main Content */
.page-wrapper {
    background: linear-gradient(180deg, rgba(179, 220, 229, 1) 0%, rgba(37, 123, 152, 1) 100%);
}

.content-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    position: relative;
}

.hero-section .content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title-wrapper {
    padding-bottom: 20px;
    border-bottom: 2px solid #284969;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.hero-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: right;
    margin: 0;
}

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

.professor-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Profile Section */
.profile-section {
    padding: 40px 0;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.profile-content {}

.section-title {
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
}

.profile-text {
    font-weight: 400;
    color: #000;
}

/* Message Section */
.message-section {
    padding: 40px 0 80px;
}

.message-content {
    max-width: 672px;
}

.message-placeholder {
    width: 100%;
    height: 400px;
    background: #d9d9d9;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .content-container {}

    .hero-section .content-container {
        gap: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 20px;
        text-align: right;
    }

    .profile-content {
        font-size: 14px;
    }

    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

}

@media (max-width: 768px) {


    .hero-section {
        margin-top: 80px;
        background-image: url(../public/suzuki.png);
        height: 70vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .content-container {
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title,
    .profile-text {
        font-size: 18px;
    }

    .profile-section,
    .message-section {
        padding: 30px 0;
    }

    .hero-section .content-container {
        position: relative;
        display: block;
    }

    .hero-image {
        display: none;
    }

    .hero-text-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
    }

    .hero-text {

        width: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
        text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);

    }

    .hero-title-wrapper {
        border-bottom: none;
    }


    .profile-content {
        padding: 16px;
        text-align: left;
    }

    .section-title,
    .profile-text {
        color: white;
    }

    .hero-title {
        color: #fff;
        text-align: right;
        font-size: 24px;
    }

    .hero-subtitle {
        color: #fff;
        text-align: left;
    }

    .profile-content {
        display: none;
    }

}

@media (max-width: 480px) {
    .content-container {
        padding: 0;
    }

    .hero-section {
        padding: 0;
    }

    .main-content {
        padding: 0;
    }

    .section-title,
    .profile-text {
        font-size: 14px;
    }


    .message-placeholder {
        height: 300px;
    }

    .hero-section .content-container {
        position: relative;
        display: block;
    }

    .hero-image {
        position: relative;
        z-index: 0;
    }

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

    .hero-text {}

    .hero-title {
        color: #fff;
        text-align: right;
        font-size: 16px;
    }

    .hero-subtitle {
        color: #fff;
        text-align: left;
    }

    .hero-title-wrapper {
        border-bottom: none;
    }

    .hero-text {
        gap: 16px;
    }

    .message-section {
        padding: 20px;
    }

    .section-title,
    .profile-text {
        color: white;
    }


}