/* International Relations Section - Two Column Layout */
.international-relations-section {
    padding: 4rem 0;
}

.international-relations-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #04602a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.international-relations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04602a, #28a745);
    border-radius: 2px;
}

.international-relations-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Column - Featured Card */
.featured-card {
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.featured-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #04602a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-card-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.featured-card-button {
    background: linear-gradient(135deg, #04602a 0%, #28a745 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 96, 42, 0.3);
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.featured-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 96, 42, 0.4);
    background: linear-gradient(135deg, #034a20 0%, #218838 100%);
    color: white;
    text-decoration: none;
}

/* Right Column - News List */
.news-list {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #04602a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #04602a;
}

.news-items {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-item:hover {
    background: rgba(4, 96, 42, 0.05);
    border-color: #04602a;
    transform: translateX(5px);
}

.news-item.active {
    background: rgba(4, 96, 42, 0.1);
    border-color: #04602a;
}

.news-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.news-item-content {
    flex: 1;
    min-width: 0;
}

.news-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #04602a;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .international-relations-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-card {
        min-height: 400px;
    }

    .featured-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .international-relations-section {
        padding: 2rem 0;
    }

    .international-relations-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .featured-card-body {
        padding: 1.5rem;
    }

    .featured-card-title {
        font-size: 1.3rem;
    }

    .news-list {
        padding: 1.5rem;
    }

    .news-items {
        gap: 0.75rem;
    }

    .news-item {
        padding: 0.75rem;
    }

    .news-item-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .international-relations-title {
        font-size: 1.8rem;
    }

    .featured-card {
        min-height: 350px;
    }

    .featured-card-image {
        height: 200px;
    }

    .news-item-title {
        font-size: 0.85rem;
    }

    .news-item-date {
        font-size: 0.75rem;
    }
}