/* ── portal_common.css ───────────────────────────────── */
:root {
    --color-primary: #0077b5;
    --color-text: #111;
    --color-text-secondary: #555;
    --color-border: #ddd;
    --source-color: #0077b5;
    --source-bg: #f5f5f5;
}

body {
    font-family: 'Inter', 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #111;
}

.maincontent-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.content-container {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bredgrumsdiv {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bredgrumpara a {
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
}

.bredgrumpara span.source-color a {
    color: #555;
    font-weight: normal;
}

.rightheadicondiv {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 4px;
}

.arrowheadicon {
    font-size: 1rem;
    color: #aaa;
}

.cursordefault {
    display: block;
    margin-top: 10px;
    font-style: italic;
    background: #f8f9fa;
    padding: 12px;
    border-left: 4px solid #0077b5;
    color: #555;
    font-size: 0.9rem;
}

.contenttitlediv {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.videotitletext {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: #111;
}

.videodatecompany {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.shareiconbtndiv {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.a2a_kit {
    display: flex;
    gap: 8px;
}

.a2a_button_linkedin, .a2a_button_x, .a2a_button_email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: #fff !important;
    cursor: pointer;
    transition: opacity 0.2s;
}

.a2a_button_linkedin { background: #0077b5; }
.a2a_button_x { background: #000; }
.a2a_button_email { background: #ea4335; }

.a2a_button_linkedin:hover, .a2a_button_x:hover, .a2a_button_email:hover {
    opacity: 0.85;
}

.homevideodiv {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.homevideodiv iframe, .homevideodiv video {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.contentdetailsdiv {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 40px;
}

.contentdetailsdiv p {
    margin-bottom: 20px;
}

.morecontainer {
    border-top: 2px solid #0077b5;
    padding-top: 30px;
    margin-top: 40px;
}

.moretitlediv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.moretitle {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.seeallbtn {
    background: none;
    border: 1px solid #0077b5;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.seeallbtn:hover {
    background: #0077b5;
    color: #fff !important;
}

.morecontentdiv {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 24px;
}

.morecontentdiv:last-child {
    border-bottom: none;
}

.multimediaredirect {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

.moreimagediv {
    width: 240px;
    min-width: 240px;
    height: 135px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}

.moreimagediv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s;
}

.morecontentdiv:hover .moreimagediv img {
    transform: scale(1.05);
}

.tagbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
}

.playbutton {
    display: inline-flex;
    align-items: center;
}

.morecontenttitlesdiv {
    flex: 1;
}

.morevideotitle {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #111;
}

.morevideocontent {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer styling */
.footer-content {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}

.footerheadtitle {
    max-width: 1000px;
    margin: 0 auto;
}

.centerfooter {
    display: flex;
    flex-direction: column;
}

.formfooter {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.subscribetext {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.emailaddress input {
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    width: 280px;
}

.subscribebutton button {
    background: #0077b5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fl {
    display: flex;
    gap: 60px;
}

.platforms, .aboutus {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footerhead {
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footerelements a {
    color: #aaa;
    text-decoration: none;
}

.footerelements a:hover {
    color: #fff;
}

.disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
}

/* Cookie Policy */
.CookiePolicy_div {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    font-size: 0.85rem;
    border-top: 2px solid #0077b5;
}

.CookiePolicy_subdiv {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsubbtn {
    background: #0077b5;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

/* Bell notification style */
.bellicon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0077b5;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 768px) {
    .fl { flex-direction: column; gap: 30px; }
    .morecontentdiv { flex-direction: column; }
    .moreimagediv { width: 100%; height: auto; aspect-ratio: 16/9; }
    .formfooter { flex-direction: column; align-items: stretch; }
    .emailaddress input { width: 100%; }
}
