/* ========================================
   EDITORIAL POLICY - Complete styling
   Gebruikt de basis variabelen uit theme.css
   ======================================== */

/* ========================================
   BASE WRAPPER
   ======================================== */
.tty-ep-wrapper {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Decoratief patroon achtergrond */
.tty-ep-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9%;
    width: 40%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v10m0 30v10m-20-25h10m30 0h10' stroke='%23005F5F' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='15' r='2' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='45' r='2' fill='%23005F5F'/%3E%3Ccircle cx='20' cy='30' r='2' fill='%23005F5F'/%3E%3Ccircle cx='40' cy='30' r='2' fill='%23005F5F'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Direct children boven patroon */
.tty-ep-wrapper > * {
    position: relative;
    z-index: 1;
}

.tty-ep-content {
    width: 100%;
}

/* ========================================
   BANNER SECTIE
   ======================================== */
.tty-ep-banner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.tty-ep-banner .tty-hero-title {
    margin: 0px 0px 10px 0px;
}

.tty-hero-title {
    margin: 0px 0px 10px 0px;
}

.tty-ep-subtitle {
    font-size: 24px;
    color: var(--tty-primary);
    margin: 0;
}

.tty-ep-header-content {
    flex: 1;
}

.tty-ep-date {
    font-size: 18px;
    color: var(--tty-text-secondary);
    margin: 0px;
}

/* ========================================
   CONTAINER LAYOUT
   ======================================== */
.tty-ep-container {
    display: flex;
    gap: 40px;
}

/* ========================================
   SIDEBAR NAVIGATIE
   ======================================== */
.tty-ep-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.tty-ep-nav-block,
.tty-ep-links-block {
    background-color: var(--tty-bg-secondary);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px;
}

.tty-ep-nav-block h3,
.tty-ep-links-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.tty-ep-nav-list,
.tty-ep-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-ep-nav-list li,
.tty-ep-quick-links li {
    margin-bottom: 10px;
}

.tty-ep-nav-list a,
.tty-ep-quick-links a {
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-ep-nav-list a:hover,
.tty-ep-quick-links a:hover,
.tty-ep-nav-list a.active {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
}

.tty-ep-quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tty-ep-quick-links a i {
    font-size: 12px;
    opacity: 0.7;
    transition: var(--tty-transition-normal);
}

.tty-ep-quick-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* ========================================
   TRUST BADGE IN SIDEBAR
   ======================================== */
.tty-ep-trust-badge {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 95, 95, 0.05) 100%);
    border: 2px solid var(--tty-primary);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 20px;
}

.tty-ep-badge-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--tty-bg-linear-graniet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-text-light);
    font-size: 24px;
}

.tty-ep-badge-content strong {
    display: block;
    color: var(--tty-primary);
    font-size: 16px;
    margin-bottom: 5px;
}

.tty-ep-badge-content span {
    font-size: 13px;
    color: var(--tty-text-secondary);
    line-height: 1.4;
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */
.tty-ep-content-main {
    flex: 1;
}

.tty-ep-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.tty-ep-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.tty-ep-section h2 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
}

.tty-ep-block {
    background-color: var(--tty-bg-secondary);
    padding: 30px;
    border-radius: 30px;
}

.tty-ep-block h3 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.tty-ep-block h4 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.tty-ep-block p {
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.tty-ep-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tty-ep-feature-card {
    background-color: var(--tty-text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--tty-transition-normal);
}

.tty-ep-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tty-ep-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(0, 95, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 24px;
}

.tty-ep-card-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.tty-ep-card-content p {
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   INFORMATION PANELS
   ======================================== */
.tty-ep-info-panel {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
    overflow: hidden;
}

.tty-ep-info-header {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tty-ep-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tty-ep-info-header h3 {
    margin: 0;
    color: var(--tty-text-light);
    font-size: 22px;
}

.tty-ep-info-content {
    padding: 25px;
}

.tty-ep-info-content p {
    margin-bottom: 12px;
}

.tty-ep-info-content p:last-child {
    margin-bottom: 0;
}

/* Warning Panel Variant */
.tty-ep-info-panel.warning .tty-ep-info-header {
    background-color: #f39c12;
}

/* ========================================
   TEAM GRID
   ======================================== */
.tty-ep-team-grid {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.tty-ep-team-card {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    transition: var(--tty-transition-normal);
}

.tty-ep-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tty-ep-team-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--tty-bg-linear-graniet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-text-light);
    font-size: 26px;
}

.tty-ep-team-info h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: var(--tty-primary);
}

.tty-ep-team-info p {
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.tty-ep-qualifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-ep-qualifications li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.tty-ep-qualifications li:last-child {
    margin-bottom: 0;
}

.tty-ep-qualifications i {
    color: #27ae60;
    font-size: 12px;
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.tty-ep-process-steps {
    margin-top: 30px;
    position: relative;
}

.tty-ep-process-steps::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--tty-primary) 0%, rgba(0, 95, 95, 0.2) 100%);
    border-radius: 3px;
}

.tty-ep-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.tty-ep-step:last-child {
    margin-bottom: 0;
}

.tty-ep-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--tty-bg-linear-graniet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-text-light);
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 95, 95, 0.3);
}

.tty-ep-step-content {
    flex: 1;
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tty-ep-step-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--tty-primary);
}

.tty-ep-step-content p {
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   SOURCES GRID
   ======================================== */
.tty-ep-sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tty-ep-source-card {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--tty-transition-normal);
}

.tty-ep-source-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tty-ep-source-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--tty-text-light);
}

.tty-ep-source-icon.peer-reviewed {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.tty-ep-source-icon.guidelines {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.tty-ep-source-icon.government {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.tty-ep-source-icon.experts {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.tty-ep-source-card h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: var(--tty-primary);
}

.tty-ep-source-card p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Sources to Avoid */
.tty-ep-sources-avoid {
    margin-top: 40px;
    padding: 25px;
    background-color: rgba(231, 76, 60, 0.05);
    border-left: 4px solid #e74c3c;
    border-radius: 0 15px 15px 0;
}

.tty-ep-sources-avoid h3 {
    margin: 0 0 15px 0;
    color: #e74c3c;
    font-size: 18px;
}

.tty-ep-sources-avoid h3 i {
    margin-right: 10px;
}

.tty-ep-sources-avoid ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.tty-ep-sources-avoid ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.tty-ep-sources-avoid ul li:last-child {
    margin-bottom: 0;
}

/* ========================================
   MANAGE OPTIONS / OPTION CARDS
   ======================================== */
.tty-ep-manage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.tty-ep-option-card {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--tty-transition-normal);
}

.tty-ep-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tty-ep-option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 95, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 36px;
}

.tty-ep-option-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--tty-primary);
}

.tty-ep-option-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Settings/Action Button */
.tty-ep-settings-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, var(--tty-primary-light) 100%);
    border: none;
    border-radius: var(--tty-radius-lg);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 95, 95, 0.3);
    transition: var(--tty-transition-normal);
    color: #fff !important;
  	text-decoration: none !important
}

.tty-ep-settings-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--tty-shadow-lg);
    color: var(--tty-text-light);
}

/* ========================================
   CORRECTIONS PROCESS
   ======================================== */
.tty-ep-corrections-process {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--tty-text-light);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tty-ep-corrections-process h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: var(--tty-primary);
}

.tty-ep-corrections-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tty-ep-correction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tty-ep-correction-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: var(--tty-bg-linear-graniet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-text-light);
    font-size: 14px;
    font-weight: 700;
}

.tty-ep-correction-item p {
    margin: 0;
    line-height: 1.6;
    padding-top: 5px;
}

/* ========================================
   CONTACT CARDS
   ======================================== */
.tty-ep-contact-cards {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.tty-ep-contact-card {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--tty-transition-normal);
}

.tty-ep-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tty-ep-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(0, 95, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 22px;
}

.tty-ep-contact-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--tty-primary);
}

.tty-ep-contact-info p {
    margin: 5px 0;
    line-height: 1.5;
}

.tty-ep-contact-info a {
    color: var(--tty-primary);
    text-decoration: none;
    transition: var(--tty-transition-normal);
}

.tty-ep-contact-info a:hover {
    text-decoration: underline;
}

/* ========================================
   UPDATES SECTION (CTA)
   ======================================== */
.tty-ep-updates {
    background: var(--tty-bg-linear-graniet);
    border-radius: 12px;
    margin: 60px 0 150px;
    overflow: hidden;
    position: relative;
    border-bottom: none;
}

.tty-ep-updates-container {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tty-ep-updates h2 {
    color: var(--tty-text-light);
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 32px;
}

.tty-ep-updates p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tty-ep-update-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tty-ep-update-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--tty-text-light);
    color: var(--tty-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--tty-transition-normal);
}

.tty-ep-update-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tty-ep-update-button.tty-ep-secondary {
    background-color: transparent;
    color: var(--tty-text-light);
    border: 1px solid white;
}

.tty-ep-update-button.tty-ep-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Heartbeat SVG in updates section */
.tty-ep-updates .heartbeat polyline {
    stroke: rgba(255, 255, 255, 0.4);
}

/* ========================================
   LISTS STYLING
   ======================================== */
.tty-ep-content-main ul {
    list-style: none;
    padding-left: 0;
}

.tty-ep-content-main ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.tty-ep-content-main ul li:before {
    content: "•";
    color: var(--tty-primary);
    position: absolute;
    left: 8px;
    font-weight: bold;
}

.tty-ep-content-main ul li:last-child {
    margin-bottom: 0;
}

/* Override for specific list types */
.tty-ep-qualifications li:before,
.tty-ep-sources-avoid ul li:before {
    display: none;
}

.tty-ep-qualifications li {
    padding-left: 0;
}

/* ========================================
   LINKS IN CONTENT
   ======================================== */
.tty-ep-block a {
    color: var(--tty-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--tty-transition-normal);
}

.tty-ep-block a:hover {
    color: var(--tty-primary-dark);
    text-decoration: underline;
}

/* ========================================
   SECTION SPECIFIC OVERRIDES
   ======================================== */
#section-overview {
    margin-top: 20px;
}

.content-area-wrapper {
    margin-bottom: -60px;
}

/* ========================================
   DARK THEME AANPASSINGEN
   ======================================== */
[data-theme="dark"] .tty-ep-wrapper::before {
    opacity: 0.03;
}

[data-theme="dark"] .tty-ep-trust-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--tty-accent, #4fd1c5);
}

[data-theme="dark"] .tty-ep-badge-content strong {
    color: var(--tty-accent, #4fd1c5);
}

[data-theme="dark"] .tty-ep-feature-card,
[data-theme="dark"] .tty-ep-team-card,
[data-theme="dark"] .tty-ep-step-content,
[data-theme="dark"] .tty-ep-source-card,
[data-theme="dark"] .tty-ep-option-card,
[data-theme="dark"] .tty-ep-contact-card,
[data-theme="dark"] .tty-ep-info-panel,
[data-theme="dark"] .tty-ep-corrections-process {
    background-color: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-ep-team-info h3,
[data-theme="dark"] .tty-ep-step-content h3,
[data-theme="dark"] .tty-ep-source-card h3,
[data-theme="dark"] .tty-ep-corrections-process h3,
[data-theme="dark"] .tty-ep-contact-info h3,
[data-theme="dark"] .tty-ep-option-card h3 {
    color: var(--tty-accent, #4fd1c5);
}

[data-theme="dark"] .tty-ep-sources-avoid {
    background-color: rgba(231, 76, 60, 0.1);
}

[data-theme="dark"] .tty-ep-section {
    border-bottom-color: var(--tty-border-light);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .tty-ep-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tty-ep-container {
        flex-direction: column;
    }
    
    .tty-ep-sidebar {
        position: relative;
        top: 0;
        flex: none;
        width: 100%;
    }
    
    .tty-ep-banner {
        flex-direction: column;
    }
    
    .tty-ep-features-grid,
    .tty-ep-manage-options {
        grid-template-columns: 1fr;
    }
    
    .tty-ep-team-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-ep-team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tty-ep-qualifications {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .tty-ep-wrapper::before {
        display: none;
    }
    
    .tty-ep-banner {
        margin-top: 20px;
    }
    
    .tty-ep-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tty-ep-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tty-ep-card-icon {
        margin-bottom: 15px;
    }
    
    .tty-ep-trust-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tty-ep-process-steps::before {
        left: 20px;
    }
    
    .tty-ep-step {
        flex-direction: column;
        padding-left: 60px;
    }
    
    .tty-ep-step-number {
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .tty-ep-sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tty-ep-section h2 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .tty-ep-block {
        padding: 20px 15px;
    }
    
    .tty-ep-update-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tty-ep-contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tty-ep-section h2 {
        font-size: 26px;
    }
    
    .tty-ep-block h3 {
        font-size: 20px;
    }
    
    .tty-ep-sources-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-ep-correction-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tty-ep-correction-item p {
        padding-top: 0;
    }
    
    .tty-ep-updates-container {
        padding: 30px 20px;
    }
    
    .tty-ep-updates h2 {
        font-size: 24px;
    }
    
    .tty-ep-content-main ul li {
        padding-left: 20px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .tty-ep-sidebar {
        display: none;
    }
    
    .tty-ep-content-main {
        width: 100%;
    }
    
    .tty-ep-banner {
        background-color: transparent;
    }
    
    .tty-ep-wrapper::before {
        display: none;
    }
    
    .tty-ep-updates {
        display: none;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes trustPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 95, 95, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 95, 95, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate sections on load */
.tty-ep-section {
    animation: fadeInUp 0.6s ease-out;
}