/* ========================================
   ORGANIZATION CONTENT
   ======================================== */
.organization-content {
    padding: 3rem 0;
    background: #f8fafc;
    min-height: 60vh;
}

/* ========================================
   ORGANIZATION SECTION
   ======================================== */
.organization-section {
    margin-bottom: 4rem;
}

.organization-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a9c;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0;
}

/* ========================================
   EXECUTIVES GRID
   ======================================== */
.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* ========================================
   EXECUTIVE CARD
   ======================================== */
.executive-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.executive-card-primary {
    border-top: 4px solid #2d5a9c;
}

.executive-card-secondary {
    border-top: 4px solid #059669;
}

.executive-card-default {
    border-top: 4px solid #6b7280;
}

.executive-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e6ecf3 0%, #d1d9e6 100%);
    overflow: hidden;
}

.executive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.executive-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.executive-image-placeholder i {
    font-size: 5rem;
    color: #9ca3af;
    opacity: 0.5;
}

.executive-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.executive-badge-primary {
    background: rgba(45, 90, 156, 0.95);
    color: #ffffff;
}

.executive-badge-secondary {
    background: rgba(5, 150, 105, 0.95);
    color: #ffffff;
}

.executive-badge-default {
    background: rgba(107, 114, 128, 0.95);
    color: #ffffff;
}

.executive-info {
    padding: 1.5rem;
}

.executive-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.executive-position {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   DPRD CONTAINER
   ======================================== */
.dprd-container {
    margin-top: 2rem;
}

.dprd-leadership {
    margin-bottom: 3rem;
}

.dprd-leadership-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a9c;
    margin: 0 0 2rem 0;
    text-align: center;
}

.dprd-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dprd-members {
    margin-top: 3rem;
}

.dprd-members-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a9c;
    margin: 0 0 2rem 0;
    text-align: center;
}

.dprd-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* ========================================
   DPRD CARD
   ======================================== */
.dprd-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dprd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dprd-card-primary {
    border-top: 4px solid #2d5a9c;
}

.dprd-card-secondary {
    border-top: 4px solid #059669;
}

.dprd-card-member {
    border-top: 2px solid #e6ecf3;
}

.dprd-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e6ecf3 0%, #d1d9e6 100%);
    overflow: hidden;
}

.dprd-image-wrapper-small {
    height: 200px;
}

.dprd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dprd-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dprd-image-placeholder i {
    font-size: 5rem;
    color: #9ca3af;
    opacity: 0.5;
}

.dprd-image-placeholder-small {
    height: 200px;
}

.dprd-image-placeholder-small i {
    font-size: 3rem;
}

.dprd-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.dprd-badge-primary {
    background: rgba(45, 90, 156, 0.95);
    color: #ffffff;
}

.dprd-badge-secondary {
    background: rgba(5, 150, 105, 0.95);
    color: #ffffff;
}

.dprd-info {
    padding: 1.5rem;
}

.dprd-info-small {
    padding: 1rem;
}

.dprd-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.dprd-name-small {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.dprd-position {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.dprd-position-small {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.dprd-fraction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f0f4ff;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: #2d5a9c;
    font-weight: 500;
}

.dprd-fraction-small {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
}

.dprd-fraction i {
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991.98px) {
    .organization-content {
        padding: 2.5rem 0;
    }

    .organization-section {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .executives-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .executive-image-wrapper {
        height: 250px;
    }

    .dprd-leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .dprd-image-wrapper {
        height: 280px;
    }

    .dprd-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .organization-content {
        padding: 2rem 0;
    }

    .organization-section {
        margin-bottom: 2.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .executives-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem;
    }

    .executive-image-wrapper {
        height: 220px;
    }

    .executive-image-placeholder i {
        font-size: 4rem;
    }

    .executive-info {
        padding: 1.25rem;
    }

    .executive-name {
        font-size: 1.05rem;
    }

    .executive-position {
        font-size: 0.85rem;
    }

    .dprd-leadership-title,
    .dprd-members-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .dprd-leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dprd-image-wrapper {
        height: 250px;
    }

    .dprd-image-placeholder i {
        font-size: 4rem;
    }

    .dprd-info {
        padding: 1.25rem;
    }

    .dprd-name {
        font-size: 1.05rem;
    }

    .dprd-position {
        font-size: 0.85rem;
    }

    .dprd-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .dprd-image-wrapper-small {
        height: 180px;
    }

    .dprd-image-placeholder-small i {
        font-size: 2.5rem;
    }

    .dprd-info-small {
        padding: 0.9rem;
    }

    .dprd-name-small {
        font-size: 0.95rem;
    }

    .dprd-position-small {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .organization-content {
        padding: 1.5rem 0;
    }

    .organization-section {
        margin-bottom: 2rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .executives-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .executive-image-wrapper {
        height: 200px;
    }

    .executive-image-placeholder i {
        font-size: 3.5rem;
    }

    .executive-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .executive-info {
        padding: 1rem;
    }

    .executive-name {
        font-size: 1rem;
    }

    .executive-position {
        font-size: 0.8rem;
    }

    .dprd-leadership-title,
    .dprd-members-title {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    .dprd-leadership-grid {
        gap: 1.25rem;
    }

    .dprd-image-wrapper {
        height: 220px;
    }

    .dprd-image-placeholder i {
        font-size: 3.5rem;
    }

    .dprd-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .dprd-info {
        padding: 1rem;
    }

    .dprd-name {
        font-size: 1rem;
    }

    .dprd-position {
        font-size: 0.8rem;
    }

    .dprd-fraction {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .dprd-members-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dprd-image-wrapper-small {
        height: 160px;
    }

    .dprd-image-placeholder-small i {
        font-size: 2rem;
    }

    .dprd-info-small {
        padding: 0.75rem;
    }

    .dprd-name-small {
        font-size: 0.9rem;
    }

    .dprd-position-small {
        font-size: 0.75rem;
    }

    .dprd-fraction-small {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .organization-content {
        background: white;
        padding: 0;
    }

    .executive-card,
    .dprd-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e6ecf3;
    }

    .executive-card:hover,
    .dprd-card:hover {
        transform: none;
        box-shadow: none;
    }
}

