/*!
 * Bootscore custom styles
 */

:root {
    --color-pallette-1: #0d1b2a;
    --color-pallette-2: #f2b705;
    --color-pallette-3: #f4f0e6;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 2px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-pallette-2);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .current-menu-item>.nav-link::after,
.navbar-nav .current-menu-ancestor>.nav-link::after {
    width: 100%;
}

.site-title-bar {
    width: 100%;
    min-height: 48px;
}

/* Keep title truly centered */
.site-title-bar .entry-title {
    margin: 0 auto;
    text-align: center;
}

/* Search width */
.site-header-actions input[type="search"] {
    width: 100px;
}

/* Mobile behavior */
@media (max-width: 768px) {
    .site-header-actions {
        position: static !important;
        transform: none !important;
        margin-top: 10px;
        justify-content: center;
    }
}

.search-with-icon .input-group-text {
    border-right: 0;
}

.search-with-icon .form-control {
    border-left: 0;
}

.search-with-icon .form-control:focus {
    box-shadow: none;
}

/* added at 1/27/2026 */

.return-section {
    background: #EFE8E2;
}

/* LEFT IMAGE GRID */
.left-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.left-image-grid img {
    width: 100%;
    border-radius: 4px;
}

/* RIGHT CARDS */
.return-card {
    min-width: 240px;
}

.return-card img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.return-card p {
    margin-top: 6px;
    font-size: 0.85rem;
}

.return-card2 {
    width: 100%;
}

.return-card2 img {
    width: 90px;
    border-radius: 6px;
    display: block;
}

.return-card2 p {
    width: 100%;
    margin-top: 6px;
    text-align: center;
    font-size: 0.85rem;
}

/* LINK */
.explore-link {
    font-size: 0.85rem;
    text-decoration: none;
}

/* Footer area under cards */
.return-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Horizontal line */
.return-separator {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
}

/* Right-aligned link */
.explore-link {
    align-self: flex-end;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
}

.life-guides-btn {
    width: 12rem;
    text-align: center;
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--color-pallette-1);
    color: #fdfdfc;
    border: 1px solid #57594E;
    border-radius: 2px;
    /* pill style */
    transition: all 0.25s ease;
}

.life-guides-btn:hover {
    background: #fffdfd;
    color: #000;
}

.subscribe-btn {
    height: 2.2rem;
    width: 7rem;
    text-align: center;
    display: inline-block;
    /* padding: 10px 18px; */
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--color-pallette-1);
    color: #fdfdfc;
    border: 1px solid #57594E;
    border-radius: 2px;
    /* pill style */
    transition: all 0.25s ease;
}

.subscribe-btn:hover {
    background: #fffdfd;
    color: #000;
}

/* edited at 1/29/2026 */

.editorial-header {
    display: flex;
    padding-left: 6rem;
    padding-right: 6rem;
    align-items: center;
    text-align: center;
    color: #3b3b3b;
}

.editorial-header::before,
.editorial-header::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.editorial-header h3,
.editorial-header h4 {
    padding: 0 1.5rem;
    white-space: normal;
    overflow-wrap: break-word;
    color: var(--color-pallette-1);
}

.editorial-header h4 {
    font-style: italic;
    color: var(--color-pallette-1);
}

/* Beyond One Path Home */

.feature-banner {
    background: #f6f1ea;
    padding: 1rem 0 0 0;
}

.feature-inner {
    background: #EFE8E2;
    background-image: linear-gradient(180deg, #EFE8E2, #F8F3EF);
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.feature-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 0.5rem;
}

.feature-content .subtitle {
    font-style: italic;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 5px;
}

.separator-class {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 5px;
    font-style: italic;
}

.author-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-row img {
    width: 180px;
    height: 180px;
    min-width: 44px;

    border-radius: 4px;
    object-fit: cover;
    object-position: center;

    display: block;
}

.author-row span {
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--color-pallette-1);
    color: #fff;
    text-decoration: none;
    border: 1px solid #57594E;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: background 0.25s ease;
}

.feature-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .feature-inner {
        grid-template-columns: 1fr;
    }
}

.editorial-header-body {
    width: 100%;
    height: 100%;
    background: #EFE8E2;
    display: flex;
    padding-left: 6rem;
    padding-right: 6rem;
    align-items: center;
    text-align: center;
    color: #3b3b3b;
}

.editorial-header-body::before,
.editorial-header-body::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.editorial-header-body h3,
h4 {
    padding: 0 1.5rem;
    white-space: nowrap;
}

.btn:hover {
    background-color: var(--color-pallette-1) !important;
}

.editorial-header-body h4 {
    font-style: italic;
    color: var(--color-pallette-1);
}

.color-1 {
    background: #EFE8E2;
}

/* Edited by 1/30/2026 */

.editorial-footer {
    background: #e6ded4;
    padding: 3rem 2rem 1.5rem;
    font-size: 0.85rem;
    color: #333;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 2rem;
    align-items: start;
}

.footer-col h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-col h6::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0.25rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.4rem;
}

.footer-col a {
    color: #333;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #555;
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: right;
    font-size: 0.75rem;
    color: #555;
}


@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-social {
        grid-column: span 2;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* 4/08/2026 */
.content-page {
    max-width: 750px;
}

:root {
    --bs-body-font-family: 'Lora';
    /* --bs-body-font-family: 'Prata', Georgia, 'Times New Roman', serif;  */
}

.site-main .entry-header .titles {
    display: none;
}

.bg-body-tertiary {
    background: #EFE8E2;
}

.site-title-bar .entry-title {
    margin: 15px 0 0 0;
    width: 16rem;
}

.nav-button {
    position: absolute;
    right: 30px;
    top: 16px;
}

.btn-primary {
    outline: none !important;
}

/* Mobile Only */
@media (max-width: 768px) {
    .site-title-bar .entry-title {
        width: 8rem;
    }

    .banner-header {
        padding-left: 70px !important;
        padding-right: 70px !important;
        padding-bottom: 0 !important;
    }

    .width-size-103 {
        width: 103%;
    }

    .editorial-header {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
        margin-top: 20px;
    }

    .feature-banner {
        margin-bottom: 20px;
    }

    .editorial-header-body h4 {
        margin-top: 20px;
    }

    .form-inline {
        padding-bottom: 28px;
        padding-left: 30px;
    }

    .lead {
        font-size: 0.6rem;
    }

    .wp-block-buttons {
        flex-direction: column;
    }

    .wp-block-button {
        color: #000;
    }

    .wp-block-separator {
        display: none;
    }

    .col {
        padding-right: 0;
    }

    h3.wp-block-heading {
        padding: 0;
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .wp-block-paragraph {
        font-size: small;
        padding: 22px;
    }

    .return-card {
        min-width: 100%;
    }

    .left-image-grid {
        display: none;
    }

    .return-card2 {
        min-width: 90px;
    }

    .feature-content h2 {
        padding-left: 30px;
    }

    .return-card2 img {
        width: 100%;
        border-radius: 6px;
        display: block;
    }

    .return-card2 p {
        margin-top: 6px;
        font-size: 0.85rem;
    }

    .life-guides-btn {
        margin-bottom: 20px;
    }

    h4 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.2rem;
        padding-left: 1px;
    }

    .subtitle {
        font-size: 0.8rem;
        margin-left: 30px;
    }

    .color-1 p {
        padding: 10px;
        text-align: center;
        font-size: 0.8rem;
    }

    .author-row img {
        margin-left: 30px;
    }

    .subscribe-btn {
        margin-left: 5px;
        margin-right: 30px;
    }

    .feature-btn {
        margin-right: 30px;
    }

    .hr-mobile {
        display: none;
    }

    .wrapper-img {
        aspect-ratio: 928 / 700 !important;
    }

    .wp-block-spacer {
        height: 0 !important;
    }

    .return-section {
        padding-bottom: 0.5rem !important;
        padding-top: 2.5rem !important;
    }
}

body {
    background: #F8F3EF;
    color: var(--color-pallette-1) !important;
}

.wp-block-buttons .wp-block-button__link {
    border-radius: 4px;
}

.wrapper-img {
    max-width: 100%;
    aspect-ratio: 728 / 90;
}

.wrapper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leaderboard {
    aspect-ratio: 728/90;
}

/* 5/18/2026 */
.sidebar {
    margin-left: -30px;
    padding: 0;
    width: 300px;
    background-color: #f1f1f1;
    height: 600px;
    overflow: auto;
}

.sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
}

.sidebar a.active {
    background-color: #04AA6D;
    color: white;
}

.sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
}

div.content {
    padding: 1px 16px 1px 0;
    font-size: smaller;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
}

div.content h3 {
    font-size: 1.0rem;
}

.max-width {
    max-width: 860px;
}

.navbar-brand {
    position: absolute;
    left: 50px;
    width: 1rem;
}

/* Remove dropdown arrow from navbar menus */
.navbar .dropdown-toggle::after {
    border-top: 0 solid;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 0 solid transparent;
    margin-left: 0;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media screen and (max-width: 1300px) {
    .sidebar {
        display: none;
    }

    div.content {
        margin-left: auto;
        margin-right: auto;
        max-width: 650px;
    }
}

/* Hide on mobile */
@media (max-width: 767px) {
    .desktop-side-popup {
        display: none !important;
    }
}

/* 6/10/2026 - publication css */
.hidden-card {
    display: none;
}

.webinar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.webinar-card {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
}

.webinar-card h3 {
    color: #3d31d1;
    margin: 20px 0;
    font-size: 28px;
}

.webinar-card .publication_description {
    line-height: 1.7;
}

.webinar-card .publication_description p {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Change this number to limit to more or fewer lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.video-wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .webinar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .webinar-grid {
        grid-template-columns: 1fr;
    }
}

/* /6/16/2026 - Hero */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 30px;
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 11px 28px;
    border-radius: 4px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: var(--color-pallette-1);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .hero-section,
    .hero-image {
        min-height: 500px;
        height: 500px;
    }

    .hero-content h1 {
        padding: 0 45px;
    }

    .hero-content p {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 230px;
    }

}

/* 6/23/2026 */
/* Blog Section */
.blog-section {
    padding: 80px 0;
}

/* Card */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.2);
}


/* Content */
.blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 20px;
}

/* Category */
.blog-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

/* Title */
.blog-title {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.blog-title a:hover {
    color: #0d6efd;
}

/* Excerpt */
.blog-excerpt {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Change this number to limit to more or fewer lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */
.blog-meta {
    margin-top: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-card img {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 1.5rem;
    }

    .blog-excerpt {
        font-size: 15px;
    }

    .blog-card img {
        height: auto;
    }
}