/* =====================================================
   TYCOON LEADERS — HOMEPAGE REDESIGN STYLESHEET
   ===================================================== */

:root {
    --tl-black: #171717;
    --tl-red: #c0392b;
    --tl-gold: #c9a24b;
    --tl-dark-navy: #14192b;
    --tl-text-gray: #6c757d;
    --tl-border: #e9e9e9;
}

body { background: #ffffff; }

/* ---------- Top Utility Bar ---------- */
.tl-topbar {
    background: #ffffff;
    border-bottom: 1px solid var(--tl-border);
    font-size: 0.82rem;
    padding: 8px 0;
}
.tl-topbar a { color: #333; }
.tl-topbar a:hover { color: var(--tl-red); }
.tl-topbar .tl-topbar-right a { margin-left: 18px; }
.tl-topbar .tl-topbar-right a:first-child { margin-left: 0; }

/* ---------- Brand / Logo ---------- */
.tl-brand-word {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    text-align: center;
    display: inline-block;
}
.tl-brand-word .tl-brand-top { display: block; font-size: 1.8rem; color: #111; }
.tl-brand-word .tl-brand-bottom { display: block; font-size: 0.95rem; color: var(--tl-red); letter-spacing: 6px; margin-top: 2px; }

/* ---------- Main Black Nav ---------- */
.tl-navbar {
    background: var(--tl-black) !important;
    padding: 0 !important;
    box-shadow: none;
    position: static;
}
.tl-navbar .nav-link {
    color: #f2f2f2 !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 16px 18px !important;
    border-radius: 0;
    position: relative;
}
.tl-navbar .nav-link:hover,
.tl-navbar .nav-link.active {
    background: transparent;
    color: #ffffff !important;
}
.tl-navbar .nav-link.active:after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: var(--tl-red);
}
.tl-navbar .navbar-nav { justify-content: center; width: 100%; }

/* ---------- Hero Section ---------- */
.tl-hero-wrap { padding: 30px 0 0; }
.tl-hero-slide {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.tl-hero-slide:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,15,30,0.88) 15%, rgba(10,15,30,0.35) 65%, rgba(10,15,30,0.15) 100%);
}
.tl-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 45px;
    max-width: 640px;
    color: #fff;
}
.tl-hero-tag {
    display: inline-block;
    background: var(--tl-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.tl-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}
.tl-hero-subtitle {
    color: #d8d8d8;
    font-size: 0.98rem;
    margin-bottom: 26px;
    line-height: 1.7;
    max-width: 480px;
}
.tl-hero-btn {
    display: inline-block;
    border: 1.5px solid #fff;
    color: #fff;
    background: transparent;
    padding: 11px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.tl-hero-btn:hover { background: #fff; color: var(--tl-black); }

.tl-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 45px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.tl-hero-dots span {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    display: inline-block;
}
.tl-hero-dots span.active { background: var(--tl-red); }

/* Side cards */
.tl-side-card {
    background: var(--tl-black);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    height: 130px;
}
.tl-side-card:last-child { margin-bottom: 0; }
.tl-side-card-img { height: 60%; overflow: hidden; }
.tl-side-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tl-side-card-body { padding: 8px 14px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.tl-side-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
    color: #fff;
    margin-bottom: 4px;
    width: fit-content;
}
.tl-tag-blue { background: #2d7bd4; }
.tl-tag-green { background: #1f9d55; }
.tl-tag-gold { background: #b8860b; }
.tl-tag-red { background: var(--tl-red); }
.tl-tag-teal { background: #16a085; }

.tl-side-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tl-side-card-title a { color: #fff; }
.tl-side-card-title a:hover { color: var(--tl-red); }
.tl-side-read-more { font-size: 0.72rem; color: #b7b7b7; }
.tl-side-read-more:hover { color: #fff; }

/* ---------- Promo Banners (Women's Leadership / Leadership CTA) ---------- */
.tl-promo-banner {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 190px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: var(--tl-dark-navy);
    background-size: cover;
    background-position: center;
}
.tl-promo-banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,10,25,0.92) 40%, rgba(15,10,25,0.55) 80%);
}
.tl-promo-content { position: relative; z-index: 2; padding: 35px 50px; max-width: 650px; }
.tl-promo-eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--tl-gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.tl-promo-title { color: #fff; font-weight: 600; font-size: 1.15rem; margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
.tl-promo-desc { color: #cfcfcf; font-size: 0.9rem; max-width: 500px; margin: 0; }
.tl-promo-brand {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    color: var(--tl-gold);
    font-family: 'Playfair Display', serif;
}
.tl-promo-brand .tl-brand-top { color: var(--tl-gold); font-size: 1.5rem; }
.tl-promo-brand .tl-brand-bottom { color: var(--tl-gold); opacity: 0.85; }

/* ---------- Section headers ---------- */
.tl-section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.tl-section-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.tl-section-header-row h2 { font-size: 1.3rem; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.tl-view-all { font-size: 0.85rem; font-weight: 600; color: var(--tl-red); }
.tl-view-all:hover { color: var(--tl-black); }

/* ---------- Featured Leaders Carousel ---------- */
.tl-leaders-wrap { position: relative; padding: 0 45px; }
.tl-leaders-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 5px;
}
.tl-leaders-track::-webkit-scrollbar { display: none; }
.tl-leader-card {
    flex: 0 0 210px;
    background: #fff;
    border: 1px solid var(--tl-border);
    border-radius: 6px;
    text-align: center;
    padding-bottom: 18px;
    transition: box-shadow 0.2s ease;
}
.tl-leader-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.tl-leader-photo-wrap { position: relative; padding: 18px 18px 0; }
.tl-leader-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    background: #f1f1f1;
}
.tl-leader-logo-badge {
    position: absolute;
    left: 30px;
    bottom: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--tl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--tl-black);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.tl-leader-name { margin-top: 30px; font-size: 1rem; font-weight: 700; color: #1a1a1a; }
.tl-leader-role { font-size: 0.82rem; color: var(--tl-text-gray); margin-top: 2px; }
.tl-leader-company { font-size: 0.82rem; color: var(--tl-text-gray); margin-bottom: 14px; }
.tl-leader-btn {
    display: inline-block;
    border: 1.5px solid #222;
    color: #222;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 22px;
    border-radius: 22px;
    text-transform: uppercase;
}
.tl-leader-btn:hover { background: #222; color: #fff; }

.tl-leaders-arrow {
    position: absolute;
    top: 90px;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--tl-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.tl-leaders-arrow.left { left: 0; }
.tl-leaders-arrow.right { right: 0; }

/* ---------- Latest Blogs cards ---------- */
.tl-blog-card { margin-bottom: 25px; }
.tl-blog-img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; margin-bottom: 12px; }
.tl-blog-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.tl-blog-title { font-size: 0.98rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.tl-blog-title a { color: #1a1a1a; }
.tl-blog-title a:hover { color: var(--tl-red); }
.tl-blog-date { font-size: 0.78rem; color: var(--tl-text-gray); margin-bottom: 12px; display: block; }
.tl-blog-date i { margin-right: 5px; }
.tl-outline-btn {
    display: inline-block;
    border: 1.4px solid #222;
    color: #222;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    text-transform: uppercase;
}
.tl-outline-btn:hover { background: #222; color: #fff; }

/* ---------- Latest Articles list ---------- */
.tl-article-panel { background: #f8f8f8; border-radius: 6px; padding: 25px; }
.tl-article-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #e4e4e4; }
.tl-article-row:last-child { border-bottom: none; padding-bottom: 0; }
.tl-article-row:first-child { padding-top: 0; }
.tl-article-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.tl-article-title { font-size: 0.92rem; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.tl-article-title a { color: #1a1a1a; }
.tl-article-title a:hover { color: var(--tl-red); }
.tl-article-meta { font-size: 0.76rem; color: var(--tl-text-gray); }
.tl-article-meta i { margin-right: 4px; }

/* ---------- Magazine editions grid ---------- */
@media (min-width: 992px) {
    .tl-magazine-col { flex: 0 0 20%; max-width: 20%; }
}

/* ---------- Magazine editions ---------- */
.tl-magazine-card { text-align: center; margin-bottom: 25px; }
.tl-magazine-cover {
    width: 100%;
    aspect-ratio: 3/4.2;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    margin-bottom: 12px;
}
.tl-magazine-month { font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
.tl-magazine-card .btn-outline-dark,
.tl-magazine-card a.tl-mag-btn {
    display: block;
    width: 100%;
    border: 1.4px solid #222;
    color: #222;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 0;
    text-transform: uppercase;
    margin-bottom: 8px;
    border-radius: 2px;
}
.tl-magazine-card a.tl-mag-btn:hover { background: #222; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .tl-hero-slide { height: auto; padding: 50px 0; }
    .tl-hero-content { padding: 0 25px; }
    .tl-hero-title { font-size: 1.7rem; }
    .tl-promo-brand { display: none; }
    .tl-topbar { text-align: center; }
    .tl-topbar .col-md-4 { text-align: center !important; margin-top: 6px; }
}
@media (max-width: 768px) {
    .tl-hero-wrap .tl-side-card { height: auto; }
    .tl-promo-content { padding: 25px; }
    .tl-promo-eyebrow { font-size: 1.4rem; }
}
