.rt_atlas-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.rt_atlas-card {
    background: #fff;
    width: 100%;
    padding: 40px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.rt_atlas-img {
    margin-bottom: 25px;
}

.rt_atlas-img img {
    width: 130px !important;
    height: 130px !important;
    object-fit: cover;
    border-radius: 50% !important;
}

.rt_atlas-content {
    width: 100%;
}

.rt_atlas-content h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    min-height: 45px;
}

.rt_atlas-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rt_atlas-cont {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rt_atlas-cont .rt_atlas-link {
    margin-top: auto;
    margin-left: auto;
    align-self: flex-end;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    align-items: center;
    gap: 5px;
}
.rt_atlas-link span{
    display: inline-block;
    transform: rotate(320deg);
    font-size: 16px;
}
@media (max-width: 1024px) {
    .rt_atlas-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .rt_atlas-card {
        flex: 1 1 100%;
    }
}