.aboutus-section-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
}

.aboutus-section {
    padding-bottom: 50px;
}

.article-float-container {
    /* overflow: hidden; */
    display: block;
}

.article-img-container {
    position: relative;
    width: 45%;
    margin-bottom: 20px;
    z-index: 1;
}

.float-left {
    float: left;
    margin-right: 50px;
}

.float-right {
    float: right;
    margin-left: 50px;
}

.article-img-container svg {
    position: absolute;
    z-index: -1;
    top: -8%;
    left: -8%;
    width: 115%;
    height: 115%;
}

.article-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    z-index: 5;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(145, 65, 47, 0.2);
    color: #91412f;
    text-transform: uppercase;
}

.badge span {
    font-size: 1.2rem;
    display: block;
}

.aboutus-section h2 {
    margin-bottom: 20px;
}

.establishment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.timeline-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    background: #e0e0e0;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab.active {
    background: #91412f;
    color: #fff;
}

.tab-content img {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.tab-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 992px) {
    .article-img-container.float-left,
    .article-img-container.float-right {
        float: none;
        width: 100%;
        margin: 0 0 30px 0;
    }

    .establishment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .badge {
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 682px) {
    .article-img {
        max-height: 350px;
    }
}
