:root {
    --bg-dark: #121212;
    --ui-light: #f8f8f8;
    --ui-light-transparent: rgba(248, 248, 248, 0.8);
    --accent-color: #c7a17a;
    --transition: all 0.2s ease;
    --will-change: will-change;
    --container-padding: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--ui-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 100;
    background-color: transparent;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav__link {
    color: var(--ui-light-transparent);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
    font-size: 1.1rem;
    white-space: nowrap;
}

.nav__link:hover, 
.nav__link.active {
    color: var(--ui-light);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav__link:hover::after, 
.nav__link.active::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

.section {
    min-height: calc(100vh - 80px);
    padding: var(--container-padding);
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4px;
    opacity: 0.18;
    z-index: 0;
    transition: transform 0.5s ease-out;
}

.hero-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s ease, transform 1s ease;
    opacity: 0;
    transform: scale(0.95);
    will-change: transform, opacity;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(18, 18, 18, 0.15);
    backdrop-filter: blur(2px);
    padding: 0 2rem;
}

.construction-notice {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-color);
    opacity: 0.7;
    font-size: 1rem;
    margin-top: 1.7rem;
    margin-bottom: 1.7rem;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.2;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    max-width: 80%;
    margin: 0 auto;
}

.hero-contacts {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ui-light-transparent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    background: rgba(18, 18, 18, 0.3);
}

.contact-link:hover {
    color: var(--accent-color);
    background: rgba(199, 161, 122, 0.2);
    backdrop-filter: blur(8px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition);
}

/* Portfolio Section */
.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
    container-type: inline-size;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.3;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.portfolio-collections {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn, 
.collection-btn,
.year-filter-btn {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid var(--ui-light-transparent);
    color: var(--ui-light-transparent);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.filter-btn:hover, 
.filter-btn.active,
.collection-btn:hover,
.collection-btn.active,
.year-filter-btn:hover,
.year-filter-btn.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(199, 161, 122, 0.2);
    backdrop-filter: blur(8px);
}

.filter-btn.active,
.year-filter-btn.active {
    background: rgba(199, 161, 122, 0.3);
    color: var(--ui-light);
}

.portfolio-year-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
    gap: 1.5rem;
    padding: 1rem;
    container-type: inline-size;
}

.portfolio-item {
    position: relative;
    max-width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 5;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    will-change: transform, opacity;
}

@container (max-width: 500px) {
    .portfolio-item {
        aspect-ratio: 3/4;
    }
}

.loading-spinner {
    position: relative;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    z-index: 2000;
    opacity: 1;
    animation: spin 1s ease-in-out infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    to {
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.portfolio-item.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.5);
    z-index: 0;
}

.fade-in {
    animation: 
        fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        floatIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    transform-origin: center center;
    will-change: transform;
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

.portfolio-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item__title {
    color: var(--ui-light);
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.portfolio-item__category {
    color: var(--accent-color);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.lightbox__image {
    max-height: calc(80vh - 60px);
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block !important;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    will-change: opacity, transform;
}

.lightbox__image.loaded {
    opacity: 1;
}

.lightbox__caption {
    color: var(--ui-light);
    max-width: 90vw;
    padding: 0.5rem 0;
    margin-top: 0;
    overflow-y: auto;
    max-height: 20vh;
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media screen and (orientation: landscape) {
    .lightbox__content {
        flex-direction: row;
        align-items: center;
        max-width: 90vw;
    }
    
    .lightbox__image {
        max-height: 90vh;
        max-width: calc(70vw - 60px);
    }
    
    .lightbox__caption {
        max-width: 25vw;
        margin-left: 1rem;
        margin-top: 0;
        max-height: 90vh;
        padding: 0 0.5rem;
    }
    
    .lightbox-nav-container {
        width: auto;
        height: 100%;
        flex-direction: column;
        justify-content: center;
    }
    
    .lightbox__nav {
        margin: 0.5rem 0;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .lightbox__content {
        max-height: 90vh;
        padding: 0.5rem;
    }
    
    .lightbox__image {
        max-height: 90vh;
        max-width: 60vw;
    }
    
    .lightbox__caption {
        font-size: 0.9rem;
        max-width: 30vw;
        padding: 0 0.3rem;
    }
}

.lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--ui-light);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    z-index: 10;
}

.lightbox__close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-nav-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox__nav {
    background: none;
    border: none;
    color: var(--ui-light);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: auto;
    padding: 1rem;
    z-index: 10;
}

.lightbox__nav:hover {
    opacity: 1;
    transform: scale(1.2);
}

.lightbox__prev {
    margin-left: -1rem;
}

.lightbox__next {
    margin-right: -1rem;
}

/* Utility Classes */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Blog Section */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.blog-filter {
    position: relative;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--ui-light-transparent);
    color: var(--ui-light-transparent);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.blog-filter:hover,
.blog-filter.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(199, 161, 122, 0.2);
}

.blog-filter.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
    animation: filterActive 0.3s ease;
}

@keyframes filterActive {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.blog-filter.multiple {
    background: rgba(199, 161, 122, 0.3);
    border-color: var(--accent-color);
}

.blog-filter.disabled {
    opacity: 0.5;
    pointer-events: none;
    text-decoration: line-through;
}

.blog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.blog-active-filter {
    background: rgba(199, 161, 122, 0.3);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.blog-active-filter-remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 0.3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    padding: 0 1rem;
    container-type: inline-size;
}

.blog-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.blog-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.blog-card__image-container {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .blog-card__image-container img {
    transform: scale(1.03);
}

.blog-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(199, 161, 122, 0.15);
    color: var(--accent-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.blog-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card__excerpt {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card__link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.blog-card__link:hover {
    gap: 0.5rem;
}

/* Blog Post */
.blog-post-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.blog-back-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-back-btn:hover {
    background: rgba(199, 161, 122, 0.1);
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-post-image {
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align:justify;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content strong {
    font-weight: 100;
}

.blog-post-content h2, h3, h4 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
}

.blog-post-content table {
    display: flex;
    justify-content: center;
}

.blog-post-content td {
    padding-right: 20px;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.blog-post-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.blog-post-footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.blog-recommendation {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 4px;
}

.blog-recommendation:hover {
    background: rgba(255, 255, 255, 0.05);
}

.blog-recommendation img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-recommendation h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-recommendation time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.blog-loader {
    margin: 2rem auto;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card__content {
        padding: 1.2rem;
    }
    
    .blog-post-title {
        font-size: 1.6rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-recommendations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
    }
    
    .blog-post-header {
        text-align: left;
    }
    
    .blog-post-meta {
        justify-content: flex-start;
    }
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #ff6b6b;
    max-width: 600px;
    margin: 0 auto;
}

.error-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-back-btn {
    background: rgba(199, 161, 122, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-back-btn:hover {
    background: rgba(199, 161, 122, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero-collage {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .hero-contacts {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    }
    
    .lightbox__nav {
        font-size: 1.5rem;
    }
    
    .lightbox__prev {
        margin-left: -0.5rem;
    }
    
    .lightbox__next {
        margin-right: -0.5rem;
    }

    .portfolio-item {
        display: flex;
        flex-direction: column;
        aspect-ratio: unset;
    }

    .portfolio-item img {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .portfolio-item__overlay {
        display: none;
    }

    /* Mobile caption */
    .portfolio-mobile-caption {
        display: flex;
        flex-direction: column;
        padding: 12px 10px;
        background: rgba(18, 18, 18, 0.95);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        flex-grow: 1;
    }

    .portfolio-mobile-caption__title {
        font-size: 15px;
        color: #fff;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .portfolio-mobile-caption__categories {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: auto;
    }

    .portfolio-mobile-caption__category {
        font-size: 12px;
        color: var(--accent-color);
        padding: 3px 8px;
        background: rgba(199, 161, 122, 0.2);
        border-radius: 12px;
    }
}

/* Desktop-only */
@media (min-width: 769px) {
    .portfolio-mobile-caption {
        display: none;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .portfolio-mobile-caption {
        padding: 10px 8px;
    }
    
    .portfolio-mobile-caption__title {
        font-size: 14px;
    }
    
    .portfolio-mobile-caption__category {
        font-size: 11px;
        padding: 2px 6px;
    }

    .lightbox__content {
        padding: 1rem;
    }

    .lightbox__caption {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Print styles */
@media print {
    .header, 
    .portfolio-filters,
    .portfolio-item__overlay {
        display: none !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5cm;
    }
    
    .portfolio-item {
        page-break-inside: avoid;
        break-inside: avoid;
    }
}