/* ==================== About Athens Section ==================== */
.about-athens-section {
    background-color: var(--bg-1);
}

.athens-section-title {
    font-size: 36px;
    line-height: 1.25;
    color: var(--text-title);
    letter-spacing: 0.5px;
}

.athens-section-desc {
    line-height: 1.7;
    color: var(--text-body);
    margin: 0 auto;
}

/* Athens Cards styling */
.athens-card {
    background-color: #ffffff;
    border: none;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.athens-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07) !important;
}

.athens-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.athens-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.athens-card:hover .athens-card-img {
    transform: scale(1.04);
}

.athens-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.athens-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 15px;
}

.athens-card-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-title);
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.athens-card-distance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(103, 123, 90, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.athens-card-distance .material-symbols-outlined {
    font-size: 18px;
}

.athens-card-text {
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
    flex-grow: 1;
    max-height: 58px;
    overflow: hidden;
}

.athens-read-more {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-title);
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.athens-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.athens-read-more:hover {
    color: var(--primary-color);
}

.athens-read-more:hover::after {
    width: 100%;
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .athens-section-title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .athens-section-title {
        font-size: 26px;
    }

    .athens-card-content {
        padding: 24px;
    }
    
    .athens-card-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .athens-section-title {
        font-size: 22px;
    }

    .athens-card-content {
        padding: 20px;
    }
}
