/* =========================
   ORGANIZATION TABLE
========================= */

.ol-org-list-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.ol-org-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* FIXED WIDTH FOR ALL TABLES */
    margin-bottom: 40px;
}

.ol-org-table th {
    background-color: #28a745;
    color: #ffffff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.ol-org-table td {
    border: 1px solid #dddddd;
    padding: 12px;
    word-wrap: break-word;
}

/* COLUMN WIDTH FIX */
.ol-org-table th:nth-child(1),
.ol-org-table td:nth-child(1) {
    width: 15%;
}

.ol-org-table th:nth-child(2),
.ol-org-table td:nth-child(2) {
    width: 65%;
}

.ol-org-table th:nth-child(3),
.ol-org-table td:nth-child(3) {
    width: 20%;
    text-align: center;
}

/* =========================
   BUTTON
========================= */

.ol-learn-more-btn {
    background-color: #28a745;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

.ol-learn-more-btn:hover {
    background-color: #218838;
    color: #ffffff;
}

/* =========================
   SINGLE PAGE LAYOUT
========================= */

.ol-single-page-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.ol-single-page-left {
    flex: 1.3;
}

.ol-single-page-right {
    flex: 0.7;
}

.ol-single-page-heading {
    font-size: 30px;
    color: #0a7a2f;
    margin-bottom: 15px;
}

.ol-single-page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.ol-single-page-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 768px) {

    .ol-single-page-wrapper {
        flex-direction: column;
    }

    /* Optional: Hide Location column on mobile */
    .ol-org-table th:nth-child(1),
    .ol-org-table td:nth-child(1) {
        display: none;
    }

    .ol-org-table th:nth-child(2),
    .ol-org-table td:nth-child(2) {
        width: 70%;
    }

    .ol-org-table th:nth-child(3),
    .ol-org-table td:nth-child(3) {
        width: 30%;
    }
}
