.concrete-item {
    display: flex;
    flex-direction: column;

    h1 {
        align-self: center;
    }

    .item-data {
        .image-card {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
}

.data-block {
    display: flex;
    flex-direction: column;
}

.carousel {
    .carousel-slide {
        border-radius: var(--round-m, 1rem);
        padding: var(--space-s, .25rem);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .carousel-btn {
        background: transparent;
        border: none;
        width: var(--diameter-l);
        height: var(--diameter-l);
        min-width: var(--diameter-l);
        min-height: var(--diameter-l);
        border-radius: 50%;
        margin: var(--gap);
        padding: 0;
        cursor: pointer;
        transition: all var(--time-m) ease;
        
        color: transparent;
        
        position: relative;
    }

    .carousel-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        
        background-color: var(--color-accent);
        
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }

    .carousel-btn--next::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    }

    .carousel-btn--prev::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
    }

    .carousel-btn:hover:not(:disabled)::before {
        background-color: var(--color-accent);
    }

    .carousel-dot {
        background: var(--color-secondary, beige);
        border-radius: 50%;
        border: 0;
        padding: 0;
        width: var(--space-s);
        height: var(--space-s);
        will-change: background;
        transition: background var(--time-s, 0.3s) ease;
    }

    .carousel-dot--active {
        background: var(--color-accent, orange);
    }

    img {
        border-radius: var(--round-s);
    }
}
