/* ==============SLIDER============= */
:root {
    --navy: #080b1f;
    --navy-2: #120c33;
    --purple: #3a1660;
    --magenta: #7e1f6e;
    --pink-hot: #c22a8d;
    --orange: #f5891f;
    --orange-2: #ffab3d;
    --ink-muted: rgba(255, 255, 255, .72);
}

/* ---------- HERO SHELL ---------- */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/dna_slider.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* subtle drifting nebula glow */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(80, 90, 220, .18), transparent 40%);
    animation: driftGlow 14s ease-in-out infinite alternate;
}

@keyframes driftGlow {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(3%, 2%) scale(1.08);
    }
}

/* particle field */
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    opacity: .6;
    animation: twinkle linear infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .15;
        transform: scale(.8) translateY(0);
    }

    50% {
        opacity: .9;
        transform: scale(1.2) translateY(-6px);
    }
}

/* ---------- DNA HELIX ---------- */
.dna-wrap {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 46%;
    max-width: 560px;
    height: 110%;
    z-index: 1;
    animation: helixFloat 6s ease-in-out infinite;
    opacity: .95;
}

@keyframes helixFloat {

    0%,
    100% {
        transform: translateY(-50%) rotate(-2deg);
    }

    50% {
        transform: translateY(-52%) rotate(2deg);
    }
}

.dna-wrap svg {
    width: 100%;
    height: 100%;
}

.strand {
    stroke-dasharray: 1400;
    animation: strandGlow 5s ease-in-out infinite;
}

@keyframes strandGlow {

    0%,
    100% {
        stroke-dashoffset: 0;
        filter: drop-shadow(0 0 6px currentColor);
    }

    50% {
        stroke-dashoffset: 40;
        filter: drop-shadow(0 0 16px currentColor);
    }
}

.rung {
    animation: rungPulse 3s ease-in-out infinite;
}

@keyframes rungPulse {

    0%,
    100% {
        opacity: .35;
    }

    50% {
        opacity: .9;
    }
}

/* open book base */
.book-base {
    position: absolute;
    bottom: 6%;
    right: 8%;
    width: 32%;
    max-width: 420px;
    z-index: 1;
    opacity: .9;
}

/* ---------- CONTENT ---------- */
.hero-content-layer {
    position: relative;
    z-index: 2;
}

.hero-inner {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-2);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow-badge::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--orange-2);
    display: inline-block;
}

.hero-title {
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}

.hero-title .accent {
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--yellow), var(--orange));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 4s linear infinite;
}

.hero-sub {
    color: var(--ink-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 34px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(245, 137, 31, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: transform .3s ease, background .3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--orange);
    color: #1a0b2e;
    transform: translateY(-3px) rotate(-4deg);
}

.feature-text .title {
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    display: block;
}

.feature-text .sub {
    color: var(--ink-muted);
    font-size: .78rem;
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--orange-2));
    background-size: 220% auto;
    color: #fff;
    border: none;
    padding: .85rem 1.7rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s ease, background-position .6s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
    font-size: 18px;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px -4px rgba(245, 137, 31, .7);
    color: #ffffff;
}

.btn-outline-glass {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 600;
    padding: .85rem 1.7rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(6px);
    transition: all .3s ease;
    height: fit-content;
    font-size: 18px;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- TEXT CAROUSEL / ANIMATION ---------- */
#textCarousel .carousel-item {
    min-height: 1px;
}

.animate-item {
    opacity: 0;
    transform: translateY(24px);
}

.carousel-item.active .animate-item {
    animation: riseIn .7s cubic-bezier(.22, 1, .36, 1) forwards;
}

.carousel-item.active .animate-item[data-delay="0"] {
    animation-delay: .05s;
}

.carousel-item.active .animate-item[data-delay="1"] {
    animation-delay: .18s;
}

.carousel-item.active .animate-item[data-delay="2"] {
    animation-delay: .30s;
}

.carousel-item.active .animate-item[data-delay="3"] {
    animation-delay: .42s;
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- ARROWS ---------- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
    transition: all .3s ease;
    cursor: pointer;
}

.hero-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #1a0b2e;
}

.hero-arrow.prev {
    left: 22px;
}

.hero-arrow.next {
    right: 22px;
}

/* ---------- INDICATORS ---------- */
.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .35s ease;
    border: none;
}

.hero-dot.active {
    background: var(--orange);
    width: 26px;
    border-radius: 5px;
}

@media (max-width:991px) {
    .dna-wrap {
        opacity: .35;
        width: 70%;
    }

    .book-base {
        display: none;
    }

    .hero-inner {
        padding: 10px 0 90px;
    }

    .cta-row {
        justify-content: center;
    }

    .cta-row .shiny-btn {
        font-size: 12px;
        padding: 10px;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .features-row {
        justify-content: space-around;
    }

    .hero-sub {
        font-size: 0.7rem;
    }

    .features-row {
        gap: 18px;
    }

    .hero-arrow {
        display: none !important;
    }
}

/* ===================== QUICK ACTIONS ===================== */
.quick-actions {
    margin-top: -38px;
    position: relative;
    z-index: 7;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    box-shadow: 0 10px 30px rgba(20, 30, 80, .08);
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(20, 30, 80, .15);
}

.quick-card {
    position: relative;
}

.quick-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(120deg, var(--pink), var(--orange), var(--cyan), var(--purple));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s ease;
}

.quick-card:hover::before {
    opacity: 1;
    animation: gradientMove 3s linear infinite;
}

.quick-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform .35s ease;
    animation: bounceSoft 3s ease-in-out infinite;
}

.quick-card:hover .quick-icon {
    transform: rotate(-8deg) scale(1.15);
}

.quick-label {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.quick-card small {
    color: var(--muted);
}

.quick-arrow {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.quick-card:hover .quick-arrow {
    transform: translateX(6px);
}

.bg-blue {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.bg-purple {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.bg-teal {
    background: linear-gradient(135deg, var(--teal), var(--lime));
}


/* ===================== TABS STRIP ===================== */
.tabs-strip {
    background: linear-gradient(120deg, var(--navy), #1a1f6e, #3a1a7a, var(--navy));
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    padding: .9rem 0;
    margin-top: 2.2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .7);
    padding: .55rem 1.3rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: .9rem;
    transition: all .3s ease;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--pink), var(--orange), var(--cyan));
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 47, 176, .4);
}

/* ===================== SECTION TITLES / BUTTONS ===================== */
.section-title {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-left: 14px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: linear-gradient(180deg, var(--orange), var(--pink), var(--purple), var(--cyan));
    background-size: 100% 300%;
    animation: gradientMove 5s linear infinite;
    border-radius: 4px;
}

.btn-primary-pill {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: .5rem 1.2rem;
    font-weight: 500;
    font-size: .85rem;
    transition: all .3s ease;
}

.btn-primary-pill:hover {
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
    background-size: 200% auto;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 18px rgba(123, 63, 242, .35);
}

/* ===================== JOURNAL CARDS ===================== */
.journal-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(20, 30, 80, .06);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 30, 80, .15);
}

.journal-cover {
    height: 150px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cover-1 {
    background: linear-gradient(135deg, #2f6bff, #22d3ee), url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.cover-2 {
    background: linear-gradient(135deg, #1fae6b, #7ede2d), url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.cover-3 {
    background: linear-gradient(135deg, #2f6bff, #ff2fb0), url('https://images.unsplash.com/photo-1614730321146-b6fa6a46bcb4?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.cover-4 {
    background: linear-gradient(135deg, #7b3ff2, #ff7a1a), url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.journal-card:hover .bookmark {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1);
}

.journal-body {
    padding: 1.1rem 1.2rem;
}

.journal-body h6 {
    font-weight: 700;
    min-height: 44px;
}

.journal-body p {
    font-size: .78rem;
    color: var(--muted);
    margin: 0;
}

.view-journal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    margin-top: .5rem;
    transition: gap .25s ease;
}

.view-journal:hover {
    gap: 10px;
    color: var(--orange);
}

.journal-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.journal-link:hover {
    color: inherit;
}

.journal-link .journal-card {
    transition: .35s ease;
    cursor: pointer;
}

.journal-link:hover .journal-card {
    transform: translateY(-8px);
}

.journal-link:hover .view-journal {
    color: #0077b6;
}

/* ===================== STATS BAR ===================== */
.stats-bar {
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem 1rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease;
}

.stat-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    animation: statShine 3.5s ease-in-out infinite;
}

@keyframes statShine {
    0% {
        left: -60%;
    }

    100% {
        left: 140%;
    }
}

/* .stat-item:hover{transform:scale(1.05);} */
.stat-item i {
    font-size: 1.7rem;
    margin-bottom: .5rem;
    display: block;
    opacity: .95;
    animation: bounceSoft 2.6s ease-in-out infinite;
}

.stat-item h3 {
    font-weight: 800;
    font-size: 2.3rem;
    margin-bottom: .2rem;
}

.stat-item span {
    font-size: .75rem;
    letter-spacing: .5px;
    opacity: .95;
}

.stat-blue {
    background: linear-gradient(135deg, #2f6bff, #22d3ee);
}

.stat-purple {
    background: linear-gradient(135deg, #7b3ff2, #ff2fb0);
}

.stat-orange {
    background: linear-gradient(135deg, #ff7a1a, #ffc93c);
}

.stat-teal {
    background: linear-gradient(135deg, #12c2b0, #7ede2d);
}



/* ===================== WHY / NEWS / NEWSLETTER ===================== */
.info-section {
    background: #eef1fa;
}

.why-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 10px 30px rgba(20, 30, 80, .08);
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .5s ease;
}

.why-card:hover .why-img {
    transform: scale(1.08);
}

.why-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    background: linear-gradient(180deg, rgba(123, 63, 242, .35), rgba(10, 16, 57, .93) 40%);
    color: #fff;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
}

.why-overlay h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1;
}

.why-list li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: .85rem;
    font-size: .85rem;
    transition: transform .25s ease;
}

.why-list li:hover {
    transform: translateX(6px);
}

.why-list li i {
    color: var(--orange-2);
    margin-top: 3px;
}

.why-list small {
    color: rgba(255, 255, 255, .65);
}

.panel-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(20, 30, 80, .06);
    transition: box-shadow .3s ease;
}

.panel-card:hover {
    box-shadow: 0 14px 34px rgba(20, 30, 80, .1);
}

.news-item {
    display: flex;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px dashed #e2e6f2;
    transition: transform .25s ease;
}

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

.news-item:hover {
    transform: translateX(4px);
}

.date-badge {
    min-width: 52px;
    height: 56px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 600;
}

.date-badge span {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.db-purple {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.db-orange {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.db-blue {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.date-badge {
    transition: transform .3s ease;
}

.news-item:hover .date-badge {
    transform: rotate(-6deg) scale(1.08);
}

.news-item h6 {
    margin-bottom: .2rem;
    font-weight: 700;
    font-size: .92rem;
}

.news-item p {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .3rem;
}

.read-more {
    color: var(--blue);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--orange);
    gap: 9px;
}

.newsletter-illustration {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fly-icon {
    font-size: 2.6rem;
    color: var(--blue);
    animation: flyAcross 3.5s ease-in-out infinite;
}

.doc-icon {
    font-size: 2rem;
    color: var(--orange-2);
    position: absolute;
    left: calc(50% + 30px);
    top: 15px;
    animation: pulseDoc 2.5s ease-in-out infinite;
}

@keyframes flyAcross {

    0%,
    100% {
        transform: translate(-15px, 0) rotate(-8deg);
    }

    50% {
        transform: translate(15px, -10px) rotate(8deg);
    }
}

@keyframes pulseDoc {

    0%,
    100% {
        transform: scale(1);
        opacity: .85;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.subscribe-group .form-control {
    border-radius: 24px 0 0 24px;
    border: 1px solid #dfe3f0;
}

.subscribe-group .btn {
    border-radius: 0 24px 24px 0;
}

.social-row {
    display: flex;
    gap: .6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-4px) rotate(8deg) scale(1.12);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .15), 0 8px 18px rgba(255, 47, 176, .35);
}

.social-icon.fb {
    background: #3b5998;
}

.social-icon.tw {
    background: #1da1f2;
}

.social-icon.li {
    background: #0077b5;
}

.social-icon.yt {
    background: #ff0000;
}

.social-icon.ig {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}


/* ====================ARTICLES SLIDER======================= */
/* ===================== ARTICLES ===================== */
.articles-section {
    padding: 3rem 0;
}

.articles-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    align-items: stretch;
    gap: 1.5rem;
    padding: 4px 4px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-left: 1.5rem;
}

.articles-row::-webkit-scrollbar {
    display: none;
}

.article-card {
    flex: 0 0 260px;
    width: 260px;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: var(--radius, 14px);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(20, 30, 80, .06);
    transition: transform .35s ease, box-shadow .35s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width:768px) {
    .article-card {
        flex-basis: 280px;
        width: 280px;
    }
}

.article-card:hover,
.article-card:visited,
.article-card:active {
    color: inherit;
    text-decoration: none;
}

.article-card:hover {
    /* transform:translateY(-8px); */
    box-shadow: 0 20px 40px rgba(20, 30, 80, .15);
}

.article-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(20, 30, 80, .1);
}

.article-cover {
    height: 130px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cover-comp {
    background: linear-gradient(135deg, #2f6bff, #ff2fb0), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.cover-env {
    background: linear-gradient(135deg, #1fae6b, #ffc93c), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.cover-earth {
    background: linear-gradient(135deg, #7b3ff2, #22d3ee), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.cover-tech {
    background: linear-gradient(135deg, #e8493f, #ff7a1a), url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?q=80&w=800&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
}

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: .3rem .7rem;
    border-radius: 16px;
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
}

.tag-blue {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.tag-green {
    background: linear-gradient(135deg, var(--green), var(--lime));
}

.tag-purple {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.tag-red {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.article-card:hover .tag {
    animation: pop .4s ease;
}

.article-body {
    padding: 1.1rem 1.2rem;
}

.article-body h6 {
    font-weight: 700;
    font-size: .92rem;
    min-height: 48px;
}

.article-body small {
    display: block;
    color: var(--muted);
    font-size: .75rem;
    margin-bottom: .25rem;
}

.article-body small i {
    width: 16px;
    color: var(--blue);
}

.read-more {
    display: inline-block;
    margin-top: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue);
}

.read-more i {
    margin-left: 4px;
    transition: transform .25s ease;
}

.article-card:hover .read-more i {
    transform: translateX(4px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e6f2;
    color: var(--navy);
    box-shadow: 0 6px 16px rgba(20, 30, 80, .1);
    transition: all .25s ease;
}

.carousel-arrow:hover {
    background: var(--orange);
    color: #fff;
}

.carousel-arrow-left {
    left: -18px;
}

.carousel-arrow-right {
    right: -18px;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}