/* ===== Doing Right Thing Block ===== */
.drt-block-wrap {
    padding: 120px 0 0;
}


.drt-title {
    margin-bottom: 20px !important;
}

.drt-header {
    margin-bottom: 40px;
}
.drt-header p{
    padding: 0;
}


.drt-cards-row {
    display: flex;
    gap: 20px;
}

.drt-card {
    flex: 1 1 0;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: #F4F4F4;
    max-height: 298px;
}

.drt-card-image {
    flex-shrink: 0;
    overflow: hidden;
    width: 45%;
}

.drt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.drt-card:hover .drt-card-image:hover img {
    transform: scale(1.08);
}

.drt-card-content {
    width: 50%;
    min-width: 306px;
    min-height: 298px;
    padding: 38px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drt-card-title {
   color: #000;
font-size: 23px;
font-style: normal;
font-weight: 400;
line-height: 32px; 
    margin-bottom: 12px;
}

.drt-card-desc {
  color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; 
    letter-spacing: 0.32px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.drt-card-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
    align-self: flex-start;
    padding: 4px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 12px;
    background: #242424;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; 
    }

.drt-card-btn:hover {
    background: linear-gradient(91deg, #544FF8 70.08%, #2EB6AE 100.12%);
    color: #fff;
    
}
.drt-card-btn img {
   width: 10px;
   height: 10px;
}
.drt-card-btn :hover img{
    transform: scale(1.2);
}



/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .drt-block-wrap {
        padding: 80px 0 0px;
    }
    .drt-header {
        margin-bottom: 32px;
    }

    /* Cards single column stack */
    .drt-cards-row {
        flex-direction: column;
        gap: 16px;
    }

    .drt-card {
        flex: 1 1 100%;
        flex-direction: row;
       
    }

    .drt-card-image {
       width: 340px;
    }

    .drt-card-content {
        width: 55%;
        min-width: unset;
        padding: 38px 30px;
    }

    .drt-card-title {
        font-size: 20px;
    }

    .drt-cards-row {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .drt-block-wrap {
        padding: 60px 0 0px;
    }

    .drt-title {
        padding: 0 30px ;
    }

    .drt-cards-row {
        flex-direction: column;
        gap: 20px;
    }

    .drt-card {
        flex-direction: row;
        max-height: unset;
        height: auto;
    }

    .drt-card-image {
        width: 45%;
        min-height: 180px;
    }

    .drt-card-content {
        width: 55%;
        min-width: unset;
        max-height: unset;
        padding: 24px 18px;
    }

    .drt-card-desc {
        margin-bottom: 25px;
    }

    .drt-card-title {
        margin-bottom: 4px;
    }
}