.panel-construction {
    width: 100%;
    padding: calc(var(--space) * 60) 0;
    background-color: #F4F4F4;
}

.panel-construction__wrapper {
    max-width: var(--size, 82.5rem);
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

.single-content h2.panel-construction__title,
.editor-styles-wrapper .block-editor-block-list__layout h2.panel-construction__title,
.panel-construction__title {
    font-size: var(--fs-48);
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    text-align: center;
    margin: 0 auto calc(var(--space) * 32) auto;
}

.panel-construction__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--space) * 10);
    box-sizing: border-box;
}

.panel-construction__item {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.panel-construction__image-container {
    position: relative;
    overflow: visible;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: calc(var(--space) * 12);
    box-sizing: border-box;
}

.panel-construction__image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.panel-construction__image-small-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 9.5rem;
    height: 9.5rem;
    overflow: hidden;
    z-index: 2;
    box-sizing: border-box;
}

.panel-construction__image-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-content h3.panel-construction__item-title,
.editor-styles-wrapper .block-editor-block-list__layout h3.panel-construction__item-title,
.panel-construction__item-title {
    font-size: var(--fs-24);
    font-weight: 600;
    color: #121212;
    margin: 0 0 calc(var(--space) * 8) 0;
    line-height: 1.3;
    text-align: left;
}

.panel-construction__item-desc {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: #555558;
    font-weight: 400;
}

.panel-construction__item-desc ul {
    margin: 0;
    padding-left: 1.125rem !important;
    list-style-type: disc;
}

.panel-construction__item-desc li {
    margin-bottom: 0.375rem;
    color: #555558;
}

.panel-construction__item-desc li::marker {
    color: #6b7280;
}

.panel-construction__item-desc p {
    margin: 0;
}

.editor-styles-wrapper .panel-construction__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.875rem !important;
}

@media screen and (max-width: 61.9375rem) {
    .panel-construction {
        padding: calc(var(--space) * 30) 0;
    }

    .single-content h2.panel-construction__title,
    .editor-styles-wrapper .block-editor-block-list__layout h2.panel-construction__title,
    .panel-construction__title {
        font-size: var(--fs-32);
        margin-bottom: calc(var(--space) * 16);
    }

    .panel-construction__grid {
        grid-template-columns: 1fr;
    }


    .single-content h3.panel-construction__item-title,
    .editor-styles-wrapper .block-editor-block-list__layout h3.panel-construction__item-title,
    .panel-construction__item-title {
        font-size: var(--fs-20);
    }

}