﻿



.afdest-row {
    display: flex;
    gap: 40px;
    padding: 45px 0 25px;
    border-bottom: 1px solid #e5e5e5;
}


.afdest-img-wrap {
    flex: 0 0 42%;
}

.afdest-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}


.afdest-content {
    flex: 1;
}

.afdest-title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #1c6b5f;
    margin: 0px 0 12px;
    text-transform: uppercase;
}

.afdest-desc {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    margin-bottom: 25px;
}


.afdest-btn {
    display: inline-block;
    background: #226e68;
    color: #fff;
    text-decoration: none;
    padding: 6px 40px;
    border-radius: 7px;
    font-size: 18px;
}

    .afdest-btn:hover {
        background: #000;
        color: #fff;
        text-decoration: none;
    }


@media(max-width:900px) {
    .afdest-row {
        flex-direction: column !important;
        gap: 0px;
        padding: 25px 0;
    }

    .afdest-banner {
        height: 100px!important;
    }

    .afdest-img {
        height: 200px;
    }
    .afdest-desc {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .afdest-btn {
        font-size: 14px;
        padding: 10px 30px;
    }
}

