/* Course Contact Section Widget 118 */

.ccs118-wrap {
    font-family: 'Open Sans', sans-serif;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.ccs118-header {
    text-align: center;
    margin-bottom: 48px;
}

.ccs118-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ccs118-subtitle {
    font-size: 18px;
    color: #6B9A76;
    margin: 0;
    line-height: 1.5;
}

/* Two-column layout */
.ccs118-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Card base */
.ccs118-card {
    background-color: #ffffff;
    border: 1px solid #e8edf0;
    border-radius: 16px;
    padding: 32px;
}

/* ── Documents card ── */
.ccs118-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.ccs118-dl-icon {
    display: flex;
    align-items: center;
    color: #6B9A76;
    flex-shrink: 0;
}

.ccs118-dl-icon svg {
    width: 22px;
    height: 22px;
}

.ccs118-doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ccs118-doc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #e8edf0;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

a.ccs118-doc-row:hover {
    border-color: #3B828C;
    background: #f0f8f9;
    color: #3B828C;
}

a.ccs118-doc-row:hover .ccs118-doc-icon {
    color: #3B828C;
}

.ccs118-doc-icon {
    display: flex;
    align-items: center;
    color: #8a9bb0;
    flex-shrink: 0;
}

.ccs118-doc-icon svg {
    width: 18px;
    height: 18px;
}

/* ── Coordinator card ── */
.ccs118-coord-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.ccs118-coord-label {
    font-size: 14px;
    color: #8a9bb0;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ccs118-coord-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
}

.ccs118-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ccs118-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ccs118-contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3B828C 0%, #6B9A76 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccs118-contact-icon svg {
    width: 24px;
    height: 24px;
}

.ccs118-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ccs118-contact-label {
    font-size: 13px;
    color: #6B9A76;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ccs118-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
}

a.ccs118-contact-value:hover {
    color: #3B828C;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .ccs118-columns {
        grid-template-columns: 1fr;
    }

    .ccs118-title {
        font-size: 28px;
    }

    .ccs118-subtitle {
        font-size: 16px;
    }

    .ccs118-card {
        padding: 24px;
    }
}
