/* ==========================================================================
   IMAGE TEXT / ABOUT SECTION - BEM STANDARD
   ========================================================================== */

.image-text { 
    background-color: var(--color-primary, #ffffff);
}

.image-text__row {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* ĐẢO VỊ TRÍ ẢNH VÀ CHỮ KHI CÓ MODIFIER */
.image-text--img-right .image-text__row {
    flex-direction: row-reverse;
}

/* CỘT ẢNH CHIẾM 55% */
.image-text__img-col {
    max-width: 55%;
}

.image-text__img { 
    width: 100%; 
    border-radius: var(--radius-card, 6px); 
    display: block; 
    object-fit: cover;
}

/* CỘT CHỮ CHIẾM 45% */
.image-text__text-col { 
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.image-text__text-col h2 {
    color: var(--text-title);
    margin-bottom: 20px;
}

.image-text__text-col p { 
    color: var(--text-dark, #0F0F0F); 
    opacity: 0.85;
    margin-bottom: 30px; 
}

/* CHỈ SỬA ĐÚNG NÚT A THÀNH DẠNG LINK */
.image-text__text-col a {
    color: var(--text-dark, #0F0F0F);
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: var(--transition-base, all 0.3s ease);
}

.image-text__text-col a:hover {
    color: var(--color-accent, #456C35);
}