:root {
    --primary-color: #1a2a3a;
    --secondary-color: #4fc3f7;
    --accent-color: #29b6f6;
    --text-color: #e8f0fe;
    --hover-color: #81d4fa;
    --bg-color: #0d1b2a;
    --card-bg: #1b2f44;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-gradient: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
    --footer-gradient: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 300;
    font-size: 16px;
}

.top-banner {
    background: var(--header-gradient);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-color);
    border-bottom: 1px solid rgba(79, 195, 247, 0.15);
}

header {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    backdrop-filter: blur(8px);
    background: rgba(13, 27, 42, 0.98);
}

.ritz-stl-top-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.ritz-stl-top-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-decoration: none;
    gap: 0.3rem;
}

.ritz-stl-top-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.ritz-stl-top-item a {
    color: #4fc3f7;
}

.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(79, 195, 247, 0.2);
    height: 38px;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background: rgba(79, 195, 247, 0.1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.nav-link.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 500;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.nav-link i {
    margin-left: 6px;
    font-size: 0.7rem;
}

.language-dropdown {
    position: relative;
    margin-left: 0.5rem;
}

.language-btn {
    background: transparent;
    border: 1px solid rgba(79, 195, 247, 0.2);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    height: 38px;
}

.language-btn:hover {
    background: rgba(79, 195, 247, 0.1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.language-btn i {
    margin-left: 6px;
    font-size: 0.7rem;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    width: 180px;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    padding: 0.8rem;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    border: 1px solid rgba(79, 195, 247, 0.15);
}

.language-menu.show {
    display: grid;
}

.language-item {
    padding: 0;
}

.language-link {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.language-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: var(--secondary-color);
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
    height: 34px;
    min-width: 60px;
}

.mobile-menu-btn:hover {
    background: var(--hover-color);
    opacity: 0.9;
    transform: translateY(-1px);
}

main {
    margin-top: 150px;
    padding: 2rem 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin: 2.2rem 0 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: -0.3px;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.6;
    border-radius: 2px;
}

.site-info {
    margin-bottom: 10px;
}

.ritz-stl-top-gallery-grid {
    column-count: 4;
    column-gap: 14px;
}

.ritz-stl-top-gallery-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 14px;
    break-inside: avoid;
    border: 1px solid rgba(79, 195, 247, 0.08);
    display: inline-block;
    width: 100%;
}

.ritz-stl-top-gallery-card:hover {
    background-color: #1f3a55;
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.15);
}

.ritz-stl-top-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ritz-stl-top-gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}

.ritz-stl-top-gallery-img:hover {
    opacity: 0.92;
}

.ritz-stl-top-gallery-info {
    padding: 1rem 0.8rem 0.8rem;
    background-color: transparent;
    text-align: left;
}

.ritz-stl-top-gallery-title {
    font-size: 1rem;
    margin-bottom: 0.15rem;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.ritz-stl-top-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.ritz-stl-top-item {
    background-color: var(--card-bg);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex: 0 1 auto;
    text-align: center;
    border: 1px solid rgba(79, 195, 247, 0.08);
}

.ritz-stl-top-item:hover {
    background-color: #1f3a55;
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-2px);
}

.ritz-stl-top-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 400;
    display: block;
    font-size: 1rem;
    transition: var(--transition);
}

.ritz-stl-top-link:hover {
    color: var(--hover-color);
}

footer {
    background: var(--footer-gradient);
    padding: 3rem 5% 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(79, 195, 247, 0.15);
}

.footer-container-ritz-stl-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.ritz-stl-top-footer-links-col {
    min-width: 180px;
}

.ritz-stl-top-footer-links-col h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.ritz-stl-top-footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
    border-radius: 2px;
}

.ritz-stl-top-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.ritz-stl-top-footer-link {
    color: rgba(232, 240, 254, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.2rem 0;
    width: auto;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.ritz-stl-top-footer-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    padding-left: 4px;
}

.footer-banners {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    align-items: flex-start;
}

.ritz-stl-top-footer-banner {
    width: 100px;
    height: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px 8px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(79, 195, 247, 0.1);
    opacity: 0.8;
}

.ritz-stl-top-footer-banner:hover {
    opacity: 1;
    background: rgba(79, 195, 247, 0.05);
    border-color: rgba(79, 195, 247, 0.4);
    transform: scale(1.02);
}

.copyright {
    text-align: center;
    margin: 2.5rem calc(-50vw + 50%) 0;
    padding: 1.5rem 1.2rem 0.5rem;
    border-top: 1px solid rgba(79, 195, 247, 0.1);
    font-size: 0.8rem;
    color: rgba(232, 240, 254, 0.5);
    width: 100vw;
    background: rgba(13, 27, 42, 0.3);
}

.copyright p {
    margin: 0.3rem 0;
    line-height: 1.5;
    text-align: center;
}

@media (min-width: 992px) {
    .ritz-stl-top-header-container {
        flex-direction: column;
    }
    .nav-list {
        gap: 0.5rem;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .ritz-stl-top-header-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        min-height: 80px;
    }

    .ritz-stl-top-logo {
        margin: 0 auto;
        order: 2;
        max-width: calc(100% - 100px);
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 1rem 5%;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        z-index: 999;
        border-top: 1px solid rgba(79, 195, 247, 0.1);
        order: 3;
    }

    .main-nav.show {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        justify-content: center;
        width: 100%;
        border-radius: 50px;
    }

    .language-dropdown {
        width: 100%;
        margin: 0.5rem 0 0;
    }

    .language-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .footer-container-ritz-stl-top {
        grid-template-columns: repeat(2, 1fr);
    }

    main {
        margin-top: 100px;
    }
}

@media (max-width: 800px) {
    .ritz-stl-top-gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .ritz-stl-top-gallery-grid {
        column-count: 2;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .footer-container-ritz-stl-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ritz-stl-top-footer-links-col h3 {
        text-align: center;
    }

    .ritz-stl-top-footer-links-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ritz-stl-top-footer-links {
        align-items: center;
    }

    .ritz-stl-top-footer-link {
        text-align: center;
    }

    .footer-banners {
        align-items: center;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        left: 5%;
        transform: none;
        z-index: 1001;
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
        height: 32px;
        min-width: 55px;
    }

    .ritz-stl-top-header-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        min-height: 80px;
        padding-top: 10px;
    }

    .ritz-stl-top-logo {
        margin: 0 auto;
        order: 2;
        max-width: calc(100% - 100px);
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        top: 12px;
        left: 4%;
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
        height: 30px;
        min-width: 50px;
    }
    
    .ritz-stl-top-header-container {
        min-height: 70px;
        padding-top: 8px;
    }
}

.ritz-stl-top-footer-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    justify-content: center;
}

li {
    list-style: none;
}

.ritz-stl-top-info-section {
    background: rgba(27, 47, 68, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(79, 195, 247, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    line-height: 1.8;
    font-size: 1rem;
    backdrop-filter: blur(4px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ritz-stl-top-gallery-card,
.ritz-stl-top-item {
    animation: fadeIn 0.4s ease;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

footer .footer-container-ritz-stl-top:last-child {
    display: block;
    width: 100%;
    margin-top: 2rem;
}

footer .copyright {
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem 1.2rem 0.5rem;
    border-top: 1px solid rgba(79, 195, 247, 0.1);
    font-size: 0.8rem;
    color: rgba(232, 240, 254, 0.5);
    width: 100%;
    background: transparent;
    max-width: 1400px;
}

footer .copyright p {
    margin: 0.3rem auto;
    line-height: 1.5;
    text-align: center;
    max-width: 1000px;
}

.text-logo {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 0.9;
    text-decoration: none;
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0.2rem 0;
    display: inline-block;
    max-width: 100%;
}

.text-logo strong {
    display: block;
    font-weight: 800;
    font-size: 4.5rem;
    color: var(--secondary-color);
    letter-spacing: 6px;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(79, 195, 247, 0.3);
    line-height: 1;
    white-space: nowrap;
}

.text-logo span {
    display: block;
    font-weight: 300;
    font-size: 1.6rem;
    color: var(--text-color);
    letter-spacing: 4px;
    word-break: keep-all;
    max-width: 100%;
    border-top: 1px solid rgba(79, 195, 247, 0.3);
    padding-top: 8px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .text-logo {
        font-size: 2rem;
    }
    .text-logo strong {
        font-size: 3.4rem;
        letter-spacing: 4px;
    }
    .text-logo span {
        font-size: 1.4rem;
        letter-spacing: 3px;
        padding-top: 5px;
    }
}

.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
}

.section > h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid #4fc3f7;
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.article-rabbit-news {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(79, 195, 247, 0.15);
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
}

.article-rabbit-news:hover {
    box-shadow: 0 10px 35px rgba(79, 195, 247, 0.1);
    transform: translateY(-2px);
}

.section-header {
    padding: 25px 25px 10px 25px;
}

.section-header h2 {
    margin: 0 0 5px 0;
    font-size: 1.9rem;
    line-height: 1.3;
}

.section-header h2 a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}

.section-header h2 a:hover {
    color: #81d4fa;
    text-decoration: underline;
}

.section-header .sub {
    margin: 8px 0 0 0;
    font-size: 1.1rem;
    color: rgba(232, 240, 254, 0.7);
    font-style: italic;
}

.article-thumbs-rabbit-news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 25px 20px 25px;
}

.article-thumb {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.35s ease;
}

.article-thumb:hover {
    transform: scale(1.04);
}

.article-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.article-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: opacity 0.25s;
    border-radius: 16px;
}

.article-thumb img:hover {
    opacity: 0.85;
}

.article-rabbit-news p {
    padding: 0 25px 25px 25px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.article-rabbit-news p a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #4fc3f7;
}

.article-rabbit-news p a:hover {
    color: #81d4fa;
    border-bottom: 1px solid #81d4fa;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .article-thumbs-rabbit-news {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .article-thumbs-rabbit-news {
        grid-template-columns: 1fr;
    }

    .section-header, .article-thumbs-rabbit-news, .article-rabbit-news p {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.ritz-stl-top-grid > strong,
.ritz-stl-top-grid > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0.5rem 0.2rem;
    padding: 0 0.8rem;
    background-color: var(--card-bg);
    border: 1px solid rgba(79, 195, 247, 0.12);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.ritz-stl-top-grid > a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.25);
}

.ritz-stl-top-grid > strong {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.2);
}

.ritz-stl-top-grid > strong:first-of-type {
    margin-top: 1.5rem;
}



.article-model-profile {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(79, 195, 247, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.article-model-profile:hover {
    border-color: rgba(79, 195, 247, 0.2);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.08);
}

.model-profile-inner {
    display: flex;
    gap: 0;
}

.model-profile-img {
    flex: 0 0 280px;
    min-width: 280px;
    overflow: hidden;
    background: var(--bg-color);
}

.model-profile-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.model-profile-img img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.model-profile-img img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.model-profile-content {
    flex: 1;
    padding: 2rem 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.model-profile-content h2 {
    font-size: 2rem;
    margin: 0 0 0.8rem 0;
    text-align: left;
    font-weight: 300;
    color: var(--secondary-color);
    letter-spacing: -0.3px;
    border: none;
}

.model-profile-content h2::after {
    display: none;
}

.model-profile-content h2 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.model-profile-content h2 a:hover {
    color: var(--hover-color);
}

.model-profile-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    opacity: 0.92;
}

.model-profile-content p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px dotted rgba(79, 195, 247, 0.3);
    transition: all 0.2s ease;
}

.model-profile-content p a:hover {
    color: var(--hover-color);
    border-bottom-color: var(--hover-color);
}

/* Mobile */
@media (max-width: 768px) {
    .model-profile-inner {
        flex-direction: column;
    }

    .model-profile-img {
        flex: 0 0 auto;
        min-width: unset;
        width: 100%;
        max-height: 480px;
    }

    .model-profile-img img {
        min-height: 300px;
        max-height: 480px;
        width: 100%;
        object-fit: cover;
    }

    .model-profile-content {
        padding: 1.5rem 1.2rem 1.2rem;
    }

    .model-profile-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .model-profile-img {
        max-height: 380px;
    }

    .model-profile-img img {
        min-height: 240px;
        max-height: 380px;
    }

    .model-profile-content {
        padding: 1rem 1rem 1rem;
    }

    .model-profile-content h2 {
        font-size: 1.3rem;
    }

    .model-profile-content p {
        font-size: 0.92rem;
        line-height: 1.6;
    }
}