/* About Section New Design (Marble & Stone Theme) */
.about-stone-section {
    padding: 50px 0;
    background-color: var(--theme-body-bg);
    position: relative;
    overflow: hidden;
}

/* Masonry Gallery Setup */
.stone-masonry-gallery {
    position: relative;
    z-index: 2;
    padding-right: 30px;
    padding-bottom: 30px;
}

.stone-main-media {
    position: relative;
    z-index: 3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.stone-main-media video,
.stone-main-media img {
    width: 100%;
    max-width: 500px;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Decorative texture behind the media */
.stone-decorative-texture {
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 80%;
    height: 90%;
    background-color: var(--theme-secondary);
    opacity: 0.9;
    z-index: 1;
    border-radius: 4px;
}

/* Experience Badge */
.stone-experience-box {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: var(--theme-primary);
    color: var(--theme-body-bg, #ffffff);
    padding: 30px 25px;
    text-align: center;
    border-radius: 4px;
    z-index: 4;
    box-shadow: 0 15px 35px rgba(30, 61, 51, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stone-exp-year {
    font-size: 38px;
    font-weight: var(--theme-heading-weight) !important;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--theme-secondary);
    font-family: var(--theme-font);
    /* Or matching serif */
}

.stone-exp-text {
    font-size: 13px;
    font-weight: var(--theme-body-weight) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Area */
.stone-about-content {
    position: relative;
    z-index: 2;
}

.stone-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stone-line {
    width: 40px;
    height: 2px;
    background: var(--theme-secondary);
}

.stone-subtitle {
    font-size: 14px;
    font-weight: var(--theme-body-weight) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme-secondary);
}

.stone-headline {
    font-size: 42px;
    font-weight: var(--theme-heading-weight) !important;
    color: var(--theme-primary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.stone-desc {
    font-size: 16px;
    color: var(--theme-body-color, #666666);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: var(--theme-body-weight) !important;
}

/* Feature List */
.stone-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stone-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    font-weight: var(--theme-body-weight) !important;
    color: var(--theme-heading, var(--theme-primary));
}

.stone-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    color: var(--theme-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}

/* Button */
.stone-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--theme-primary);
    color: var(--theme-body-bg, #ffffff);
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stone-btn-primary .btn-text {
    padding: 16px 30px;
    font-size: 14px;
    font-weight: var(--theme-heading-weight) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stone-btn-primary .btn-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.stone-btn-primary:hover {
    background: var(--theme-secondary);
    color: var(--theme-body-bg, #ffffff);
}

.stone-btn-primary:hover .btn-icon {
    background: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .stone-masonry-gallery {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .stone-main-media video,
    .stone-main-media img {
        max-width: 100%;
    }

    .stone-decorative-texture {
        right: auto;
        left: 10%;
        bottom: -10px;
        width: 90%;
        height: 100%;
    }

    .stone-experience-box {
        left: 0;
        bottom: 10px;
        padding: 15px 20px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .stone-exp-year {
        font-size: 32px;
        margin-bottom: 0;
    }

    .stone-exp-text {
        text-align: left;
    }

    .stone-headline {
        font-size: 32px;
    }

    .stone-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-stone-section {
        padding: 50px 0;
    }

    .stone-headline {
        font-size: 26px;
    }

    .stone-main-media video,
    .stone-main-media img {
        height: 400px;
    }
}