/* ================================================
   PRESS RELEASE SINGLE PAGE - TeroTAM
   Font: Montserrat | Colors: #0C1C44, #FF8214
   ================================================ */

/* ---------- GLOBAL OVERRIDES for WP/Elementor ---------- */
.pr-single-page,
.pr-single-page *,
.pr-single-page *::before,
.pr-single-page *::after {
    box-sizing: border-box;
}

.pr-single-page {
    font-family: 'Montserrat', sans-serif;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-block-start: 0 !important;
    width: 100%;
    overflow-x: clip;
}
.pr-single-page section {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.prs-progress-bar {
    max-width: 100% !important;
    margin: 0 !important;
}

/* ---------- Container ---------- */
.pr-single-page .pr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* ---------- Reading Progress Bar ---------- */
.prs-progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, #FF8214, #FF9E47);
    width: 0; z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 8px rgba(255,130,20,0.4);
}

/* ---------- Breadcrumbs ---------- */
.pr-single-page .pr-breadcrumbs {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; margin: 0 0 28px 0;
    position: relative; z-index: 2;
}
.pr-single-page .pr-breadcrumbs a {
    color: rgba(255,255,255,0.7); text-decoration: none; transition: color .3s;
}
.pr-single-page .pr-breadcrumbs a:hover { color: #FF8214; }
.pr-single-page .pr-bread-sep { color: rgba(255,255,255,0.4); display: flex; }
.pr-single-page .pr-bread-current { color: #FF8214; font-weight: 500; }

/* ================================
   HERO SECTION
   ================================ */
.prs-hero {
    background: linear-gradient(135deg, #0C1C44 0%, #142952 60%, #0C1C44 100%);
    padding: 60px 0 80px;
    position: relative; overflow: hidden;
}
.prs-hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,130,20,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,130,20,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.prs-hero .pr-container { position: relative; z-index: 2; }

.prs-hero-content {
    max-width: 100%;
}
.prs-hero-meta {
    display: flex; align-items: center; gap: 16px;
    margin: 0 0 24px 0; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.prs-hero-meta .pr-category-badge {
    position: static !important;
    display: inline-block;
    background: #FF8214; color: #fff !important;
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    padding: 5px 14px; border-radius: 0;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.prs-hero-date, .prs-hero-read-time {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: rgba(255,255,255,0.65);
}
.prs-hero-date svg, .prs-hero-read-time svg { color: rgba(255,255,255,0.5); }

.prs-hero-title {
    font-size: 36px; font-weight: 700; color: #fff !important;
    line-height: 1.3; margin: 0 0 16px 0;
    max-width: 820px;
}
.prs-hero-excerpt {
    font-size: 16px; color: rgba(255,255,255,0.7);
    max-width: 700px; line-height: 1.7;
    margin: 0;
}

/* ================================
   FEATURED IMAGE
   ================================ */
.prs-featured-image {
    margin-top: -40px; padding: 0 0 40px;
    position: relative; z-index: 3;
}
.prs-image-frame {
    border-radius: 0; overflow: hidden;
    box-shadow: 0 20px 60px rgba(12,28,68,0.15);
    max-width: 900px;
}
.prs-main-image {
    width: 100%; height: auto; display: block;
}

/* ================================
   CONTENT + SIDEBAR LAYOUT
   ================================ */
.prs-content-section {
    padding: 40px 0 60px;
}
.prs-content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

/* ---------- TABLE OF CONTENTS ---------- */
.prs-toc {
    background: #F8F9FE;
    border-radius: 0;
    border-left: 4px solid #FF8214;
    margin-bottom: 36px;
    overflow: hidden;
    position: relative;
}
.prs-toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0C1C44;
    cursor: pointer;
}
.prs-toc-header svg:first-child { color: #0C1C44; flex-shrink: 0; }
.prs-toc-header > span { flex: 1; }
.prs-toc-toggle {
    background: none; border: none;
    cursor: pointer; color: #999; padding: 4px;
    transition: transform .3s;
    flex-shrink: 0;
    display: flex; align-items: center;
}
.prs-toc.collapsed .prs-toc-toggle { transform: rotate(-90deg); }
.prs-toc-list {
    padding: 0 20px 16px;
    max-height: 500px;
    transition: max-height .4s ease, padding .4s ease, opacity .3s;
    overflow: hidden;
}
.prs-toc.collapsed .prs-toc-list { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; }
.prs-toc-list ol {
    list-style: none; margin: 0; padding: 0;
    counter-reset: toc;
}
.prs-toc-list ol li {
    counter-increment: toc;
    margin-bottom: 6px;
}
.prs-toc-list ol li a {
    display: flex; align-items: baseline; gap: 8px;
    font-size: 13px; color: #555; text-decoration: none;
    padding: 6px 0; border-radius: 0; transition: all .3s;
    line-height: 1.5;
}
.prs-toc-list ol li a::before {
    content: counter(toc, decimal-leading-zero) ".";
    font-weight: 600; color: #FF8214; font-size: 12px;
    min-width: 24px; flex-shrink: 0;
}
.prs-toc-list ol li a:hover { color: #FF8214; }
.prs-toc-list ol li a.active { color: #FF8214; font-weight: 600; }

/* ---------- ARTICLE CONTENT ---------- */
.prs-article-content {
    font-size: 15px; color: #444; line-height: 1.85;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.prs-article-content h2 {
    font-size: 26px; font-weight: 700; color: #0C1C44;
    margin: 40px 0 16px; line-height: 1.3;
    padding-top: 20px;
}
.prs-article-content h3 {
    font-size: 20px; font-weight: 700; color: #0C1C44;
    margin: 30px 0 12px; line-height: 1.35;
}
.prs-article-content h4 {
    font-size: 17px; font-weight: 600; color: #0C1C44;
    margin: 24px 0 10px;
}
.prs-article-content p { margin-bottom: 18px; }
.prs-article-content a { color: #FF8214; font-weight: 500; text-decoration: underline; }
.prs-article-content a:hover { color: #0C1C44; }
.prs-article-content img {
    max-width: 100%; height: auto; border-radius: 0;
    margin: 20px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.prs-article-content ul, .prs-article-content ol {
    margin: 16px 0; padding-left: 24px;
}
.prs-article-content li { margin-bottom: 8px; }
.prs-article-content blockquote {
    border-left: 4px solid #FF8214;
    background: #FFF8F0;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0;
    font-style: italic; color: #333;
}
.prs-article-content table {
    width: 100%; border-collapse: collapse; margin: 20px 0;
}
.prs-article-content th, .prs-article-content td {
    padding: 12px 16px; text-align: left;
    border: 1px solid #e8e8e8;
}
.prs-article-content th {
    background: #0C1C44; color: #fff; font-weight: 600;
}
.prs-article-content tr:nth-child(even) td { background: #F8F9FE; }

/* ---------- TAGS ---------- */
.prs-tags {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-top: 36px; padding-top: 24px; border-top: 1px solid #eee;
}
.prs-tags-label { font-size: 13px; font-weight: 600; color: #0C1C44; }
.prs-tag {
    font-size: 12px; padding: 5px 14px; border-radius: 0;
    background: #F8F9FE; color: #555; text-decoration: none;
    border: 1px solid #e2e5ea; transition: all .3s;
}
.prs-tag:hover { border-color: #FF8214; color: #FF8214; background: rgba(255,130,20,0.04); }

/* ---------- SHARE ---------- */
.prs-share {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    margin-top: 28px; padding: 24px 0;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.prs-share-label { font-size: 13px; font-weight: 600; color: #0C1C44; }
.prs-share-buttons { display: flex; gap: 8px; }
.prs-share-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 0;
    background: #F8F9FE; border: 1px solid #e2e5ea;
    color: #555; text-decoration: none;
    transition: all .3s; cursor: pointer;
}
.prs-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.prs-share-linkedin:hover { background: #0077B5; color: #fff; border-color: #0077B5; }
.prs-share-twitter:hover { background: #000; color: #fff; border-color: #000; }
.prs-share-facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.prs-share-copy:hover { background: #FF8214; color: #fff; border-color: #FF8214; }
.prs-share-copy.copied {
    background: #22c55e; border-color: #22c55e; color: #fff;
}

/* ---------- POST NAVIGATION ---------- */
.prs-post-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-top: 36px;
}
.prs-post-nav-link {
    display: flex; align-items: center; gap: 14px;
    padding: 20px; border-radius: 0;
    border: 1px solid #e2e5ea; text-decoration: none;
    transition: all .3s; background: #fff;
}
.prs-post-nav-link:hover {
    border-color: #FF8214;
    box-shadow: 0 4px 16px rgba(255,130,20,0.1);
}
.prs-post-next { text-align: right; justify-content: flex-end; }
.prs-post-nav-arrow {
    display: flex; align-items: center; color: #FF8214;
    flex-shrink: 0;
}
.prs-post-nav-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #999; display: block; margin-bottom: 4px; }
.prs-post-nav-title { font-size: 14px; font-weight: 600; color: #0C1C44; display: block; line-height: 1.4; }

/* ================================
   SIDEBAR
   ================================ */
.prs-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
    min-width: 0;
    align-self: start;
}

/* CTA Box */
.prs-sidebar-cta {
    background: linear-gradient(135deg, #0C1C44, #142952);
    border-radius: 0; padding: 32px 24px;
    text-align: center; margin-bottom: 28px;
    overflow: hidden;
}
.prs-sidebar-cta-icon { margin-bottom: 16px; }
.prs-sidebar-cta h3 {
    font-size: 18px; font-weight: 700; color: #fff !important;
    margin: 0 0 10px 0; line-height: 1.3;
}
.prs-sidebar-cta p {
    font-size: 13px; color: rgba(255,255,255,0.65);
    margin: 0 0 20px 0; line-height: 1.6;
}

/* Buttons */
.pr-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 0;
    font-size: 14px; font-weight: 600; text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s; cursor: pointer; border: 2px solid transparent;
}
.pr-single-page .pr-btn-orange,
.pr-single-page .pr-btn-orange:link,
.pr-single-page .pr-btn-orange:visited {
    background: #FF8214 !important; color: #fff !important; border-color: #FF8214 !important;
}
.pr-single-page .pr-btn-orange:hover {
    background: #e6720e !important; border-color: #e6720e !important; color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,130,20,0.3);
}
.pr-btn-full { width: 100%; justify-content: center; }
.pr-btn-outline {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3);
}
.pr-btn-outline:hover {
    border-color: #FF8214; color: #FF8214;
}
.pr-btn-outline-dark {
    background: transparent; color: #0C1C44; border: 2px solid #0C1C44;
}
.pr-btn-outline-dark:hover {
    background: #0C1C44; color: #fff;
}

/* Read More */
.pr-single-page .pr-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: #FF8214;
    text-decoration: none; transition: gap .3s, color .3s;
}
.pr-single-page .pr-read-more:hover { color: #0C1C44; gap: 12px; }

/* Related Press Releases */
.prs-sidebar-related { margin-bottom: 28px; }
.prs-sidebar-heading {
    font-size: 16px; font-weight: 700; color: #0C1C44;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF8214;
}
.prs-related-list { display: flex; flex-direction: column; gap: 14px; }
.prs-related-item {
    display: flex; gap: 14px; text-decoration: none;
    padding: 12px; border-radius: 0;
    border: 1px solid #f0f0f0;
    transition: all .3s;
}
.prs-related-item:hover {
    border-color: #FF8214;
    box-shadow: 0 4px 12px rgba(12,28,68,0.06);
    transform: translateX(4px);
}
.prs-related-thumb { width: 72px; height: 56px; flex-shrink: 0; border-radius: 0; overflow: hidden; }
.prs-related-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prs-related-img-placeholder { width: 100%; height: 100%; background: #f0f2f5; }
.prs-related-info { min-width: 0; flex: 1; }
.prs-related-title {
    font-size: 13px; font-weight: 600; color: #0C1C44;
    line-height: 1.4; margin: 0 0 4px 0;
    transition: color .3s;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.prs-related-item:hover .prs-related-title { color: #FF8214; }
.prs-related-date { font-size: 11px; color: #999; }

/* Sidebar Share */
.prs-sidebar-share-btns { display: flex; gap: 8px; }

/* ================================
   MORE PRESS RELEASES SECTION
   ================================ */
.prs-more-section {
    padding: 70px 0; background: #F8F9FE;
}
.prs-more-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 36px;
}
.prs-more-title {
    font-size: 30px; font-weight: 700; color: #0C1C44;
    margin: 0;
}
.prs-more-title span { color: #FF8214; }

/* More Grid */
.prs-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.prs-more-card {
    background: #fff; border-radius: 0;
    box-shadow: 0 4px 20px rgba(12,28,68,0.06);
    overflow: hidden; transition: all .4s cubic-bezier(.25,.8,.25,1);
    display: flex; flex-direction: column;
}
.prs-more-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(12,28,68,0.12);
}
.prs-more-card-image { position: relative; overflow: hidden; }
.prs-more-card-image-link { display: block; }
.prs-more-card-img {
    width: 100%; aspect-ratio: 16/10; object-fit: cover;
    display: block; transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.prs-more-card:hover .prs-more-card-img { transform: scale(1.05); }
.prs-more-card-img-placeholder {
    width: 100%; aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    background: #f0f2f5;
}
.prs-more-card-overlay {
    position: absolute; inset: 0;
    background: rgba(12,28,68,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .4s;
}
.prs-more-card:hover .prs-more-card-overlay { opacity: 1; }
.prs-more-card-overlay-text {
    color: #fff; font-size: 14px; font-weight: 600;
    padding: 10px 24px; border: 2px solid #FF8214;
    border-radius: 0; transition: background .3s;
}
.prs-more-card:hover .prs-more-card-overlay-text { background: #FF8214; }
.prs-more-card-image .pr-category-badge {
    position: absolute; top: 14px; left: 14px;
    background: #0C1C44; color: #fff;
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    padding: 5px 14px; border-radius: 0;
    letter-spacing: 0.5px; z-index: 2;
    text-decoration: none;
}
.prs-more-card-body {
    padding: 24px 28px 28px;
    display: flex; flex-direction: column; flex: 1;
}
.prs-more-card-meta {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #888; margin-bottom: 12px;
}
.prs-more-card-date { display: flex; align-items: center; gap: 5px; color: #FF8214; font-weight: 500; }
.prs-more-card-date svg { color: #FF8214; }
.prs-more-card-title {
    font-size: 17px; font-weight: 700; line-height: 1.4;
    margin: 0 0 10px 0;
}
.prs-more-card-title a { color: #0C1C44; text-decoration: none; transition: color .3s; }
.prs-more-card-title a:hover { color: #FF8214; }
.prs-more-card-excerpt {
    font-size: 13px; color: #666; line-height: 1.7;
    margin-bottom: 18px; flex: 1;
}

/* ================================
   CTA SECTION (bottom)
   ================================ */
.pr-single-page .pr-cta-section {
    background: linear-gradient(135deg, #0C1C44 0%, #142952 100%);
    padding: 80px 0; position: relative; overflow: hidden;
    text-align: center;
}
.pr-single-page .pr-cta-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255,130,20,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255,130,20,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.pr-single-page .pr-cta-content { position: relative; z-index: 2; }
.pr-single-page .pr-cta-title { font-size: 34px; font-weight: 700; color: #fff !important; margin: 0 0 14px 0; }
.pr-single-page .pr-cta-title span { color: #FF8214; }
.pr-single-page .pr-cta-desc { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 30px; line-height: 1.7; }
.pr-single-page .pr-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pr-single-page .pr-cta-buttons .pr-btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.pr-single-page .pr-cta-buttons .pr-btn-outline:hover { border-color: #FF8214; color: #FF8214; background: transparent; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .prs-content-layout {
        grid-template-columns: 1fr 260px;
        gap: 30px;
    }
    .prs-hero-title { font-size: 30px; }
    .prs-more-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .prs-content-layout {
        grid-template-columns: 1fr;
    }
    .prs-sidebar { position: static; }
    .prs-hero { padding: 40px 0 50px; }
    .prs-hero-title { font-size: 24px; }
    .prs-hero-excerpt { font-size: 14px; }
    .prs-featured-image { margin-top: -20px; }
    .prs-post-nav { grid-template-columns: 1fr; }
    .prs-more-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .prs-more-title { font-size: 24px; }
    .prs-article-content h2 { font-size: 22px; }
    .prs-article-content h3 { font-size: 18px; }
    .prs-more-grid { grid-template-columns: 1fr; max-width: 480px; }
    .pr-single-page .pr-cta-title { font-size: 26px; }
    .pr-single-page .pr-container { padding: 0 20px; }
}

@media (max-width: 480px) {
    .prs-hero-meta { gap: 10px; }
    .prs-share { flex-direction: column; align-items: flex-start; }
    .prs-sidebar-cta { padding: 24px 18px; }
    .prs-sidebar-cta h3 { font-size: 16px; }
    .prs-hero-title { font-size: 22px; }
    .pr-single-page .pr-cta-buttons { flex-direction: column; align-items: center; }
}
