:root {
  --font-base: 1rem;
  --font-scale: 1.2;
  --text-xs: calc(var(--font-base) / (var(--font-scale) * var(--font-scale)));
  --text-sm: calc(var(--font-base) / var(--font-scale));
  --text-base: var(--font-base);
  --text-lg: calc(var(--font-base) * var(--font-scale));
  --text-xl: calc(var(--text-lg) * var(--font-scale));
  --text-2xl: calc(var(--text-xl) * var(--font-scale));
  --text-3xl: calc(var(--text-2xl) * var(--font-scale));
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --container-padding: 1rem;
  --container-max: 100%;
  --primary-color: #085696;
  --primary-dark: #0a6bc0;
  --primary-light: rgba(8, 86, 150, 0.1);
  --primary-transparent: rgba(8, 86, 150, 0.7);
  --text-light: #F4F5F7;
  --text-dark: #555;
  --bg-light: #F4F5F7;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.Quick_action_container {
    width: 100%;
    background-color: var(--primary-color);
}

.Quick_Action {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: var(--space-xl) var(--container-padding);
    max-width: 1600px;
    margin: 0 auto;
}

._title h1 {
    font-family: "Archivo Narrow", sans-serif;
    font-size: var(--text-2xl);
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 600;
}

.icons {
    background-color: var(--primary-color);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-sm);
    width: 100%;
    box-sizing: border-box;
}

.icons a {
    text-decoration: none;
}

.action {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(9.6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    height: 100%;
    box-sizing: border-box;
}

.action:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0px 4px 4px 0px rgba(30, 27, 27, 0.5);
}

.sym {
    color: var(--text-light);
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.icon_label {
    color: var(--text-light);
    font-family: "Archivo Narrow", sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    text-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.action:hover .sym {
    transform: scale(1.1);
    color: var(--text-light);
}

.action:hover .icon_label {
    color: var(--text-light);
}

.Org_Chart {
    width: 100%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--container-padding);
}

._title1 h1 {
    font-family: "Archivo Narrow", sans-serif;
    font-size: var(--text-2xl);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.org_stafftile {
    background: var(--primary-color);
    border-radius: 12px;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 250px;
    min-height: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.org_stafftile:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.org_staff {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
    justify-items: center;
}

.org_uppertile {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.org_photo {
    border-radius: 50%;
    border: 6px solid #2681cb;
    width: 120px;
    height: 120px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.org_lowertile {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
    width: 100%;
}

.org_name,
.position,
.position2 {
    color: var(--text-light);
    text-align: center;
    font-family: "Archivo Narrow", sans-serif;
    font-size: var(--text-sm);
    line-height: 1.3;
    margin: 0;
    width: 100%;
}

.org_name {
    font-weight: 600;
    font-size: var(--text-base);
}

@media (min-width: 576px) {
    :root {
        --container-padding: 1.25rem;
        --space-sm: 1rem;
    }
    
    .Quick_Action {
        padding: var(--space-xl) var(--container-padding);
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: var(--text-2xl);
    }
    
    .icons {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .action {
        padding: var(--space-lg);
    }
    
    .sym {
        width: 44px;
        height: 44px;
    }
    
    .icon_label {
        font-size: var(--text-base); 
    }
    
    .Org_Chart {
        padding: var(--space-xl) var(--container-padding);
    }
    
    .org_staff {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .org_stafftile {
        max-width: 220px;
        min-height: 260px;
    }
    
    .org_photo {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 768px) {
    :root {
        --font-base: 1.0625rem;
        --container-padding: 1.5rem;
    }
    
    .Quick_Action {
        padding: var(--space-2xl) var(--container-padding);
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 2rem;
        margin-bottom: var(--space-xl);
    }
    
    .icons {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
        padding: 0 var(--space-xl);
    }
    
    .action {
        padding: var(--space-xl);
    }
    
    .sym {
        width: 48px;
        height: 48px;
    }
    
    .icon_label {
        font-size: 1.125rem;
    }
    
    .Org_Chart {
        padding: var(--space-2xl) var(--container-padding);
        gap: var(--space-xl);
    }
    
    .org_staff {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .org_stafftile {
        max-width: 220px;
        min-height: 280px;
        padding: var(--space-lg);
    }
    
    .org_photo {
        width: 110px;
        height: 110px;
        border-width: 8px;
    }
    
    .org_name {
        font-size: var(--text-base);
    }
    
    .position,
    .position2 {
        font-size: var(--text-sm);
    }
}

@media (min-width: 992px) {
    :root {
        --font-base: 1.125rem;
    }
    
    .Quick_Action {
        padding: var(--space-2xl) 3rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 2.25rem;
    }
    
    .icons {
        padding: 0 4rem;
        gap: 2rem;
    }
    
    .action {
        padding: 2rem 1.5rem;
    }
    
    .sym {
        width: 52px;
        height: 52px;
    }
    
    .icon_label {
        font-size: 1.25rem; 
    }
    
    .org_staff {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .org_stafftile {
        max-width: 240px;
        min-height: 300px;
    }
    
    .org_photo {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 1200px) {
    :root {
        --font-base: 1.25rem; 
    }
    
    .Quick_Action {
        padding: 3rem 4rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 2.5rem;
    }
    
    .icons {
        padding: 0 6rem;
        gap: 2.5rem;
    }
    
    .action {
        padding: 2.5rem 2rem;
    }
    
    .sym {
        width: 56px;
        height: 56px;
    }
    
    .icon_label {
        font-size: 1.375rem; 
    }
    
    .org_staff {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        max-width: 1400px;
    }
    
    .org_stafftile {
        max-width: 250px;
        min-height: 330px;
        padding: 2rem;
    }
    
    .org_photo {
        width: 140px;
        height: 140px;
        border-width: 10px;
    }
    
    .org_name {
        font-size: 1.125rem; 
    }
    
    .position,
    .position2 {
        font-size: var(--text-base); 
    }
}

@media (min-width: 1400px) {
    :root {
        --font-base: 1.375rem; 
    }
    
    .Quick_Action {
        padding: 4rem 6rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 3rem; 
    }
    
    .icons {
        padding: 0 8rem;
        gap: 3rem;
    }
    
    .action {
        padding: 3rem 2.5rem;
    }
    
    .sym {
        width: 60px;
        height: 60px;
    }
    
    .icon_label {
        font-size: 1.5rem; 
    }
    
    .org_staff {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1600px;
    }
    
    .org_stafftile {
        max-width: 280px;
        min-height: 350px;
        padding: 2.5rem;
    }
    
    .org_photo {
        width: 150px;
        height: 150px;
    }
}

@media (hover: none) {
    .action:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
    
    .action:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.98);
    }
    
    .org_stafftile:hover {
        transform: none;
        background: var(--primary-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .org_stafftile:active {
        background: var(--primary-dark);
        transform: scale(0.98);
    }
}

.action:focus {
    outline: 2px solid var(--text-light);
    outline-offset: 2px;
}

@media print {
    .Quick_Action,
    .Org_Chart {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .action:hover,
    .org_stafftile:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}