/*!
 * Page-Specific Styles
 * Styles extracted from inline <style> blocks in HTML files
 */

/* ============================================
   Enterprise Solutions - SOC Dashboard Styles
   ============================================ */
.soc-dashboard {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.soc-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dashboard-title {
    font-weight: bold;
    font-size: 18px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.status-indicator.online {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.live-indicator {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    animation: pulse-red 2s infinite;
}

.world-map-container {
    position: relative;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(0,150,255,0.1) 0%, rgba(0,50,100,0.2) 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
                      radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
                      radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
}

.threat-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 15px #ff4444, 0 0 30px #ff4444;
    animation: threat-pulse 3s infinite ease-in-out;
}

.threat-point::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    animation: threat-ripple 3s infinite ease-out;
}

.threat-1 { top: 30%; left: 15%; animation-delay: 0s; }
.threat-2 { top: 45%; left: 35%; animation-delay: 0.5s; }
.threat-3 { top: 25%; left: 55%; animation-delay: 1s; }
.threat-4 { top: 60%; left: 75%; animation-delay: 1.5s; }
.threat-5 { top: 40%; left: 85%; animation-delay: 2s; }
.threat-6 { top: 70%; left: 25%; animation-delay: 2.5s; }

.dashboard-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat-box {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.alerts-feed {
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 10px;
    max-height: 90px;
    overflow: hidden;
}

.alert-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    animation: alert-fade-in 0.5s ease-in;
}

.alert-item:last-child {
    border-bottom: none;
}

.alert-time {
    color: #00ff88;
    margin-right: 10px;
    font-weight: bold;
    min-width: 35px;
}

.alert-text {
    color: rgba(255,255,255,0.9);
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes threat-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes threat-ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes alert-fade-in {
    0% { opacity: 0; transform: translateX(-10px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes count-up {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .soc-dashboard {
        padding: 15px;
        min-height: 350px;
    }
    
    .dashboard-title {
        font-size: 16px;
    }
    
    .world-map-container {
        height: 120px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-box {
        padding: 5px;
    }
}

/* ============================================
   Enterprise Solutions - FAQ Section Styles
   ============================================ */
.faq-section {
    font-family: 'Montserrat', sans-serif;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question {
    background-color: #f0f0f5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 64px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 59px;
    }
}

/* ============================================
   AI Phishing Defender - Coming Soon Styles
   ============================================ */
.coming-soon-overlay {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(153, 27, 27, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.coming-soon-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.coming-soon-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease-out;
}

.ai-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.notify-form {
    max-width: 500px;
    margin: 40px auto;
    animation: fadeInUp 1.6s ease-out;
}

.notify-input {
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid white;
    border-radius: 50px;
    width: 100%;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.notify-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: white;
    color: #dc2626;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hidden-for-later {
    display: none !important;
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    .coming-soon-subtitle {
        font-size: 1.4rem;
    }
    .coming-soon-description {
        font-size: 1rem;
    }
}

/* ============================================
   Product Pages - Why Choose List Styles
   ============================================ */
.why-choose-list .check-item {
    margin-bottom: 15px;
    line-height: 1.6;
}

.why-choose-list .red-check {
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    margin-right: 8px;
}

.why-choose-list .item-title {
    font-weight: bold;
}

/* ============================================
   PhishAgent - Infographic Styles
   ============================================ */
.phishagent-infographic {
    width: 100%;
    max-width: 520px;
    height: 350px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.phishagent-infographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: phishagent-rotate 20s linear infinite;
}

@keyframes phishagent-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.phishagent-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phishagent-title {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.phishagent-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.phishagent-step {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    width: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
}

.phishagent-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.phishagent-step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.phishagent-step:nth-child(3) .phishagent-step-icon {
    background: #f39c12;
    box-shadow: 0 4px 15px rgba(243,156,18,0.3);
}

.phishagent-step:nth-child(5) .phishagent-step-icon {
    background: #e74c3c;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.phishagent-step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 22px;
    height: 22px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.phishagent-step-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.phishagent-step-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
}

.phishagent-arrow {
    color: white;
    font-size: 25px;
    margin: 0 8px;
    animation: phishagent-pulse 2s infinite;
}

@keyframes phishagent-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.phishagent-bottom-text {
    text-align: center;
    color: white;
    font-size: 11px;
    margin-top: 15px;
    opacity: 0.9;
}

.phishagent-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: phishagent-float 6s ease-in-out infinite;
}

.phishagent-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.phishagent-particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 2s; }
.phishagent-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 4s; }
.phishagent-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1s; }
.phishagent-particle:nth-child(5) { top: 40%; left: 70%; animation-delay: 3s; }

@keyframes phishagent-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .phishagent-infographic {
        height: 300px;
        padding: 20px;
    }
    
    .phishagent-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .phishagent-step {
        width: 110px;
        padding: 12px;
    }
    
    .phishagent-step-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .phishagent-step-title {
        font-size: 11px;
    }
    
    .phishagent-step-desc {
        font-size: 9px;
    }
}

/* ============================================
   PhishIQ - Infographic Styles
   ============================================ */
.phishiq-infographic {
    width: 100%;
    max-width: 520px;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.phishiq-infographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: phishiq-rotate 20s linear infinite;
}

@keyframes phishiq-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.phishiq-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phishiq-title {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.phishiq-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.phishiq-step {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    width: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
}

.phishiq-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.phishiq-step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.phishiq-step:nth-child(3) .phishiq-step-icon {
    background: #4ecdc4;
    box-shadow: 0 4px 15px rgba(78,205,196,0.3);
}

.phishiq-step:nth-child(5) .phishiq-step-icon {
    background: #45b7d1;
    box-shadow: 0 4px 15px rgba(69,183,209,0.3);
}

.phishiq-step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 22px;
    height: 22px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.phishiq-step-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.phishiq-step-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
}

.phishiq-arrow {
    color: white;
    font-size: 25px;
    margin: 0 8px;
    animation: phishiq-pulse 2s infinite;
}

@keyframes phishiq-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.phishiq-bottom-text {
    text-align: center;
    color: white;
    font-size: 11px;
    margin-top: 15px;
    opacity: 0.9;
}

.phishiq-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: phishiq-float 6s ease-in-out infinite;
}

.phishiq-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.phishiq-particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 2s; }
.phishiq-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 4s; }
.phishiq-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1s; }
.phishiq-particle:nth-child(5) { top: 40%; left: 70%; animation-delay: 3s; }

@keyframes phishiq-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .phishiq-infographic {
        height: 300px;
        padding: 20px;
    }
    
    .phishiq-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .phishiq-step {
        width: 110px;
        padding: 12px;
    }
    
    .phishiq-step-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .phishiq-step-title {
        font-size: 11px;
    }
    
    .phishiq-step-desc {
        font-size: 9px;
    }
}

/* ============================================
   PhishAgent User Guide - PDF Wrapper Styles
   ============================================ */
.pdf-wrapper {
    width: 100%;
    height: calc(100vh - 240px);
    min-height: 600px;
    background: #f4f4f4;
}

.pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

.simple-header {
    background: linear-gradient(135deg, #9c1b1b, #c62828);
    padding: 40px 0;
    color: #ffffff;
    text-align: center;
}

.simple-footer {
    background: linear-gradient(135deg, #7a1111, #a61c1c);
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

.simple-footer a {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   Enterprise Solutions - Products Section Styles
   ============================================ */
.enterprise-products-section {
    padding-top: 50px;
}

/* Grid layout instead of long vertical blocks */
.enterprise-products-section .container {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    grid-auto-rows: auto;
    gap: 25px;
    align-items: stretch;
}

/* Grid placement for 4 products around central illustration */
.product-card-top-left {
    grid-column: 1;
    grid-row: 1;
}

.enterprise-products-illustration {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-top-right {
    grid-column: 3;
    grid-row: 1;
}

.product-card-bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.product-card-bottom-right {
    grid-column: 3;
    grid-row: 2;
}

/* Modern card look */
.product-block {
    margin: 0;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.product-block:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

/* Card internal layout */
.product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 18px;
}

/* Icon smaller + cleaner */
.product-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/* Title tighter */
.product-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 6px;
    line-height: 1.25;
    color: #1a1a2e;
}

/* Description shorter look */
.product-description {
    font-size: 15.5px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0;
    margin-bottom: 10px;
}

/* Tags simplified */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    margin-bottom: 14px;
}

.product-tag {
    background: rgba(102, 126, 234, 0.12);
    color: #3b4cca;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
}

/* Button smaller + premium */
.product-button {
    margin-top: auto;
    display: inline-block;
    background-color: #1a1a2e;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.product-button:hover {
    background-color: #2d2d44;
    transform: none;
}

/* Mobile responsive: stack */
@media (max-width: 992px) {
    .enterprise-products-section .container {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .product-content {
        padding: 22px;
        text-align: left;
        height: 100%;
    }

    /* On mobile, let items flow naturally in a single column */
    .product-card-top-left,
    .product-card-top-right,
    .product-card-bottom-left,
    .product-card-bottom-right,
    .enterprise-products-illustration {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ============================================
   Knowledge Hub - link color (site red, not orange)
   ============================================ */
.knowledge-hub-content a {
    color: #b01030;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.knowledge-hub-content a:hover,
.knowledge-hub-content a:focus {
    color: #8B0A20;
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Knowledge Hub - Core Topics equal-height rows */
.core-topics-row {
    display: flex;
    flex-wrap: wrap;
}
.core-topics-row > .core-topic-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.core-topics-row .core-topic-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.core-topics-row .core-topic-block p {
    flex: 1;
    margin-bottom: 0;
}

/* Knowledge Hub - Latest Insights: more space between link rows */
.insights-links-row [class*="col-"] {
    margin-bottom: 1.5rem;
}
.insights-links-row [class*="col-"]:last-child {
    margin-bottom: 0;
}

/* ============================================
   Article template (Knowledge Hub articles)
   ============================================ */
.article-template .article-hero {
    background-color: #111;
    padding: 120px 0 80px 0;
    color: #fff;
    text-align: center;
}
.article-template .article-hero .container {
    color: #fff;
}
.article-template .article-hero .article-lead {
    max-width: 750px;
    margin: 20px auto 0;
}
.article-template .article-section {
    padding: 40px 0;
}
.article-template .article-section--alt {
    background-color: #f8f8f8;
}
.article-template .article-intro .article-body {
    max-width: 100%;
}
.article-template .article-body {
    font-size: 1.0625rem;
    line-height: 1.6;
}
.article-template .article-body h2 {
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.article-template .article-body p {
    margin-bottom: 1rem;
}
.article-template .article-body p:last-child {
    margin-bottom: 0;
}
.article-template .article-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.article-template .article-body ul li {
    margin-bottom: 0.35rem;
}
.article-template .article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}
.article-template .article-body h3:first-of-type {
    margin-top: 1rem;
}
/* Two-column row: text + image (like phishiq) */
.article-template .article-two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}
.article-template .article-two-col .article-text {
    padding-bottom: 1rem;
}
@media (min-width: 992px) {
    .article-template .article-two-col .article-text {
        padding-bottom: 0;
    }
}
.article-template .article-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-template .article-media img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Image on left: add class article-two-col--media-left to the row */
@media (min-width: 992px) {
    .article-template .article-two-col--media-left .article-text {
        order: 2;
    }
    .article-template .article-two-col--media-left .article-media {
        order: 1;
    }
}
.article-template .article-back-link {
    margin-top: 2rem;
    margin-bottom: 0;
}
.article-template .knowledge-hub-content a {
    color: #b01030;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.article-template .knowledge-hub-content a:hover,
.article-template .knowledge-hub-content a:focus {
    color: #8B0A20;
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Site footer (shared: article pages, no inline styles) */
.site-footer {
    background-image: url(../../images/f-mwo-dznni-averie-woodard-2000x300.jpg);
}
.site-footer .container {
    padding-top: 20px;
    padding-bottom: 20px;
}
.site-footer .footer-contact-row {
    margin-bottom: 30px;
}
.site-footer .mbr-section-text {
    text-align: center;
    color: #fff;
}
.site-footer .mbr-section-text h4 {
    color: #fff;
    margin-bottom: 15px;
}
.site-footer .mbr-section-text p {
    margin-bottom: 8px;
}
.site-footer .footer-cta p {
    margin-bottom: 15px;
}
.site-footer .footer-cta .btn-contact {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}
.site-footer .footer-links a {
    color: #fff;
    text-decoration: underline;
}

/* ============================================
   Latest Insights – compact, different from full articles
   ============================================ */
.insight-template .insight-banner {
    background: #f6f6f6;
    padding: 56px 0 36px;
    border-bottom: 3px solid #DC143C;
    text-align: left;
}
.insight-template .insight-banner .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}
.insight-template .insight-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #DC143C;
    margin-bottom: 0.5rem;
}
.insight-template .insight-banner h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.insight-template .insight-banner .insight-lead {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.insight-template .insight-wrap {
    padding: 0 15px 50px;
}
.insight-template .insight-card {
    background: #fff;
    max-width: 900px;
    margin: -24px auto 0;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    position: relative;
    z-index: 1;
}
.insight-template .insight-card .insight-body {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
}
.insight-template .insight-card .insight-body p {
    margin-bottom: 1rem;
}
.insight-template .insight-card .insight-body p:last-child {
    margin-bottom: 0;
}
.insight-template .insight-card .insight-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 0.5rem;
}
.insight-template .insight-card .insight-body h2:first-child {
    margin-top: 0;
}
.insight-template .insight-card .insight-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.25rem;
}
.insight-template .insight-card .insight-body h3:first-of-type {
    margin-top: 0.75rem;
}
.insight-template .insight-card .insight-body ul {
    margin: 0.75rem 0 1rem 1.25rem;
    padding-left: 1rem;
}
.insight-template .insight-card .insight-body li {
    margin-bottom: 0.35rem;
}
.insight-template .insight-card .insight-media {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}
.insight-template .insight-card .insight-media img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.insight-template .insight-two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.insight-template .insight-two-col .insight-body {
    flex: 1;
    min-width: 0;
}
.insight-template .insight-two-col .insight-media {
    flex: 0 0 280px;
    margin-top: 0;
}
@media (max-width: 767px) {
    .insight-template .insight-two-col .insight-media {
        flex: 0 0 100%;
    }
}
.insight-template .insight-back-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px 2rem;
}
.insight-template .insight-back-wrap a {
    color: #b01030;
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.insight-template .insight-back-wrap a:hover {
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Links inside Insight body – same as articles (red, Inter) */
.insight-template .insight-card .insight-body a,
.insight-template .insight-two-col .insight-body a {
    color: #b01030;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.insight-template .insight-card .insight-body a:hover,
.insight-template .insight-card .insight-body a:focus,
.insight-template .insight-two-col .insight-body a:hover,
.insight-template .insight-two-col .insight-body a:focus {
    color: #8B0A20;
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
