/* ========================================
   DESERT VIBER — ADVENTURES PAGE
======================================== */

:root {
    --bg-dark: #18120d;
    --bg-deeper: #0f0b07;
    --panel: rgba(20, 16, 12, 0.82);
    --panel-soft: rgba(255, 248, 236, 0.08);
    --accent: #c7843d;
    --accent-light: #f2c281;
    --olive: #6d6d4b;
    --cream: #fff8ec;
    --cream-soft: #e8dcc8;
    --muted: #b8a98f;
    --border: rgba(242, 194, 129, 0.22);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    --transition: 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

/* ========================================
   SITE-WIDE NOTICE
======================================== */

.site-notice {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: none;
    left: 0;
    right: 0;
    background:
        linear-gradient(90deg, rgba(79, 78, 49, .96), rgba(109, 109, 75, .98), rgba(79, 78, 49, .96));
    color: var(--cream);
    padding: 8px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(242, 194, 129, .25);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.site-notice span {
    display: block;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.site-notice p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 248, 236, .9);
    line-height: 1.45;
    font-size: .84rem;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */

.site-header {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    height: 112px;

    z-index: 200;
    padding: 0 4%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(10, 8, 6, .90), rgba(10, 8, 6, .55), rgba(10, 8, 6, 0));
}

.site-header > *{
    pointer-events:auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;

    position: relative;
    z-index: 250;

    margin-top: 0;
    top: -48px;
}

.brand img {
    width: 155px;
    height: 155px;
    position: relative;
    z-index: 500;
    object-fit: contain;
    filter:drop-shadow(0 16px 26px rgba(0,0,0,.45));

    transition: transform var(--transition);    
}

.brand:hover img {
    transform: rotate(-4deg) scale(1.03);
}

.brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;

    margin-top:34px;
    margin-left:-4px;

    z-index:500;
}

.brand-text span{
    color:#f6e6c8;
    font-size:1.65rem;
    letter-spacing:.26em;
    font-weight:700;
    line-height:.9;
}

.brand-text strong{
    color:#d8a15c;
    font-size:1.08rem;
    letter-spacing:.42em;
    line-height:1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
    margin-right: 34px;
    margin-top: 64px;
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: .84rem;
    font-weight: 800;
    color: rgba(255, 248, 236, .92);
    position: relative;
    z-index: 90;
}

.site-nav a {
    position: relative;
    padding: 12px 0;
    transition: color var(--transition);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--accent-light);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent-light);
}

.site-nav a.active {
    text-shadow: 0 0 10px rgba(242,194,129,.35);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.nav-bag {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 194, 129, .38);
    border-radius: 50%;
    color: var(--accent-light);
}

/* ========================================
   HERO
======================================== */

.adventures-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(7, 5, 4, .18), rgba(7, 5, 4, .10) 55%, rgba(7, 5, 4, .88) 100%),
        linear-gradient(to right, rgba(7, 5, 4, .72), rgba(7, 5, 4, .22) 38%, rgba(7, 5, 4, .12) 68%, rgba(7, 5, 4, .45)),
        url("images/adventures/adventures-hero-image.png") center / cover no-repeat;
}

.adventures-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        /* Warm glow around the sunset */
        radial-gradient(circle at 82% 42%,
            rgba(255,153,62,.18),
            transparent 24%),

        /* Slight darkening behind the title only */
        radial-gradient(circle at 50% 42%,
            rgba(0,0,0,.28),
            transparent 42%),

        /* Very subtle top fade */
        linear-gradient(
            to bottom,
            rgba(0,0,0,.03) 0%,
            rgba(0,0,0,.08) 45%,
            rgba(0,0,0,.16) 100%
        );

    pointer-events: none;
    z-index: 1;
}

.adventures-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    box-shadow:
        inset 0 0 70px rgba(0,0,0,.25);

    pointer-events: none;
    z-index: 2;
}

.adventures-hero img{
    filter: brightness(1.18) contrast(1.05);
}

.adventures-hero-content {
    position: relative;
    z-index: 5;
    width: min(980px, calc(100% - 48px));
    text-align: center;
    padding-top: 110px;
    transform: translateY(34px);
}

.adventures-hero h1 {
    font-size: clamp(4.4rem, 9vw, 8.8rem);
    line-height: .86;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #f4ead8;
    text-shadow:
        0 4px 0 rgba(61, 39, 22, .35),
        0 18px 50px rgba(0, 0, 0, .65);
}

.hero-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 26px auto 20px;
    color: var(--accent-light);
}

.hero-rule::before,
.hero-rule::after {
    content: "";
    width: 175px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-light));
    opacity: .8;
}

.hero-rule::after {
    background: linear-gradient(to left, transparent, var(--accent-light));
}

.hero-rule span {
    font-size: 1.2rem;
    color: var(--accent-light);
    text-shadow: 0 0 16px rgba(242, 194, 129, .55);
}

.hero-tagline {
    color: #fff5e6;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-style: italic;
    letter-spacing: .06em;
    margin-bottom: 28px;
    text-shadow: 0 8px 26px rgba(0, 0, 0, .65);
}

.hero-intro {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 236, 206, .88);
    font-size: 1.06rem;
    line-height: 1.75;
    letter-spacing: .03em;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .72);
}

.scroll-cue {
    position: absolute;
    z-index: 6;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 248, 236, .56);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .7rem;
}

/* ========================================
   MAIN ADVENTURE SECTION
======================================== */

.adventures-section {
    position: relative;
    padding: 34px 4% 26px;
    background:
        linear-gradient(rgba(12, 10, 8, .95), rgba(12, 10, 8, .97)),
        url("images/tumbler/desert-sandstone-texture-1.png") center / cover;
    border-top: 1px solid rgba(242, 194, 129, .18);
}

.section-heading {
    max-width: 1500px;
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.heading-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(242, 194, 129, .45));
    opacity: .45;
}

.heading-line:last-child {
    background: linear-gradient(to left, transparent, rgba(242, 194, 129, .45));
}

.section-heading span {
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: 1.02rem;
    font-weight: 900;
}

.section-heading span::before {
    content: "⌁";
    margin-right: 12px;
    color: var(--olive);
}

.adventures-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 280px;
    gap: 32px;
    align-items: stretch;
}

/* ========================================
   ADVENTURE CARDS
======================================== */

.adventure-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 16px;
    border: 1px solid rgba(242, 194, 129, .18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.adventure-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242,194,129,.6);
    box-shadow: 0 18px 45px rgba(0,0,0,.36);
}

.adventure-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.adventure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .7s ease;
}

.adventure-card:hover .adventure-image img {
    transform: scale(1.06);
    filter: brightness(1.08) contrast(1.04);
}

.adventure-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.58) 42%,
        rgba(0,0,0,.18) 72%,
        transparent 100%
    );
    z-index: 1;
}

.card-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.adventure-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;

    padding: 7px 12px;
    border-radius: 6px;

    border: 1px solid rgba(242,194,129,.45);
    background: rgba(0,0,0,.55);

    color: #f2c281;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.adventure-copy {
    position: relative;
    z-index: 2;
    min-height: 500px;
    padding: 0 30px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
}

.adventure-copy h2 {
    color: #fff7e9;
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .55);
}

.adventure-copy h3 {
    color: var(--accent-light);
    font-size: .92rem;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: 16px;
}

.adventure-copy p {
    color: rgba(255, 248, 236, .85);
    font-size: .95rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.expedition-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.expedition-stats span {
    padding: 6px 11px;
    border-radius: 6px;

    border: 1px solid rgba(242,194,129,.30);
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(3px);
    box-shadow: 
        inset 0 1px rgba(255, 255, 255, .05),
        0 1px 4px rgba(0, 0, 0, .4);

    color: #f2c281;
    font-size: .66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.adventure-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;

    color: #efe3ce;
    font-size: .78rem;
}

.adventure-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.adventure-meta a {
    margin-left: auto;
    color: #f2c281;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    transition: letter-spacing .25s ease, color .25s ease;
}

.adventure-meta a:hover {
    color: #fff2d8;
    letter-spacing:.16em;
}

.adventure-meta a::after{
    transition:transform .3s;
}

.adventure-meta a:hover::after{
    transform:translateX(5px);
}

.adventure-card:hover .adventure-meta a {
    letter-spacing: .16em;
}

.adventure-card:hover h2{
    color:#fffdf6;
}

.adventure-card:hover h3{
    color:#ffd28b;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.location-icon {
    width: 12px;
    height: 12px;
    fill: #d7a45a;
    flex-shrink: 0;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    width: 12px;
    height: 12px;
    fill: #d7a45a;
    flex-shrink: 0;
}

.card-badges .adventure-badge,
.card-badges .trip-badge {
    padding: 7px 12px;
    border-radius: 6px;
    border: 1px solid rgba(242,194,129,.45);
    background: rgba(0,0,0,.55);
    color: #f2c281;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}

/* ========================================
   SIDEBAR
======================================== */

.adventure-sidebar {
    border-radius: 16px;
    padding: 24px 24px 18px;
    background:
        linear-gradient(
            rgba(255,255,255,.03),
            rgba(255,255,255,.015)
        );
    border: 1px solid rgba(242,194,129,.18);
    box-shadow: 0 18px 42px rgba(0,0,0,.38);
}

.adventure-sidebar h2 {
    color: #fff7e9;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .96rem;
    margin-bottom: 18px;
}

.adventure-sidebar h2::before {
    content: "⌁";
    color: var(--accent-light);
    margin-right: 10px;
    transition: .3s ease;
}

.adventure-sidebar:hover h2::before{
    transform:rotate(90deg);
}

.essential-icon{
    width:26px;
    height:26px;

    display:flex;
    align-items:flex-start;
    justify-content:center;

    flex-shrink:0;

    margin-top:3px;
}

.essential-icon svg {
    width: 26px;
    height: 26px;

    stroke: #d7a45a;
    fill: none;

    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: .3s ease;
}

/* Plan Ahead */
.essential-item:nth-child(2) svg{
    stroke:#d7a45a;
}

/* Leave No Trace */
.essential-item:nth-child(3) svg{
    stroke:#82a56e;
}

/* Travel Light */
.essential-item:nth-child(4) svg{
    stroke:#d89a67;
}

/* Stay Curious */
.essential-item:nth-child(5) svg{
    stroke:#7fa8a8;
}

/* Leave No Trace */
.essential-item:nth-child(3) svg{
    stroke:#82a56e;
}

/* Travel Light */
.essential-item:nth-child(4) svg{
    stroke:#d89a67;
}

/* Stay Curious */
.essential-item:nth-child(5) svg{
    stroke:#7fa8a8;
}

.essential-item {
    display: flex;
    align-items: flex-start;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    padding: 22px 0;
    transition: 
        transform .3s ease,
        border-color .3s ease;
    border-top: 1px solid rgba(242,194,129,.12);
}

.essential-item:first-of-type {
    border-top: none;
}

.essential-item:hover {
    transform: translateX(4px);
}

.essential-item:hover svg {
    stroke: #f2c281;
    transform:scale(1.08);
}

.essential-item h3 {
    color: #fff2dc;
    font-size: .95rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.essential-item p {
    color: rgba(255, 248, 236, .66);
    font-size: .78rem;
    line-height: 1.5;
}

.essential-text h4 {
    font-size: 1.12rem;
    letter-spacing: .01em;

    margin-bottom: 6px;

    color: #fff7e8;
}

.essential-text p {
    color: rgba(255,245,225,.74);
    font-size: .88rem;
    line-height: 1.55;
}

/* ========================================
   CTA / JOIN SECTION
======================================== */

.adventure-cta {
    max-width: 1500px;
    margin: 18px auto 0;
    padding: 34px 44px;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    border-radius: 18px;
    background:
        linear-gradient(rgba(255, 248, 236, .05), rgba(255, 248, 236, .03)),
        url("images/tumbler/desert-sandstone-texture-1.png") center / cover;
    border: 1px solid rgba(242, 194, 129, .16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.cta-left {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
}

.cta-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 194, 129, .32);
    color: var(--accent-light);
    font-size: 1.5rem;
    border-radius: 10px;
}

.cta-left h2 {
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .92rem;
    margin-bottom: 9px;
}

.cta-left p {
    color: rgba(255, 248, 236, .78);
    font-size: .9rem;
    line-height: 1.5;
}

.adventure-form {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 52px;
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid rgba(242, 194, 129, .22);
    background: rgba(8, 6, 5, .38);
}

.adventure-form input {
    min-width: 0;
    border: none;
    outline: none;
    padding: 0 20px;
    background: transparent;
    color: var(--cream);
    font-size: .95rem;
}

.adventure-form input::placeholder {
    color: rgba(255, 248, 236, .45);
}

.adventure-form button {
    border: none;
    padding: 0 28px;
    background: linear-gradient(180deg, rgba(242, 194, 129, .12), rgba(0, 0, 0, 0)), #6d6d4b;
    color: #fff5e3;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    cursor: pointer;
    border-left: 1px solid rgba(242, 194, 129, .22);
    transition: background var(--transition), transform var(--transition);
}

.adventure-form button:hover {
    background-color: #817f58;
}

.cta-quote {
    text-align: center;
    color: var(--accent-light);
}

.cta-quote p {
    font-size: 1.25rem;
    line-height: 1.35;
    font-style: italic;
    color: #eacb91;
    margin-bottom: 8px;
}

.cta-quote span {
    color: rgba(255, 248, 236, .72);
    font-size: .85rem;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: #ead7b5;
    color: #2c2117;
    border-top: 1px solid rgba(242,194,129,.22);
    padding: 34px 50px 18px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
}

.site-footer::before{
    content:"";
    position:absolute;

    top:-70px;
    left:0;
    right:0;
    height:70px;

    background:
        linear-gradient(
            transparent,
            #e9d7b7
        );
}

.footer-brand img {
    width: 280px;
    height: auto;
    display: block;
    margin-top: 0;
}

.footer-brand p {
    margin-top: 10px;
    color: #2c2117;
}

.site-footer h3 {
    margin-bottom: 14px;
    color: #1f160e;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 1rem;
}

.site-footer a {
    display: block;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #a94f1d;
}

.footer-cactus-art {
    position: absolute;
    right: 65px;
    bottom: 5px;
    width: 350px;
    height: auto;
    pointer-events: none;
    opacity: .95;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(44, 33, 23, 0.55);
    margin-top: 28px;
    padding-top: 18px;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #2c2117;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1280px) {
    .site-nav {
        gap: 24px;
        font-size: .76rem;
    }

    .adventures-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .adventure-sidebar {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0 22px;
    }

    .adventure-sidebar h2 {
        grid-column: 1 / -1;
    }

    .essential-item {
        border-top: 1px solid rgba(242, 194, 129, .16);
    }
}

@media (max-width: 980px) {
    .site-header {
        position: relative;
        top: auto;
        height: auto;
        padding: 16px 22px;
        background: rgba(10, 8, 6, .94);
        flex-wrap: wrap;
    }

    .brand img {
        width: 118px;
        height: 118px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin: 10px 0 0;
        gap: 18px;
    }

    .adventures-hero {
        min-height: 82vh;
    }

    .adventures-hero-content {
        padding-top: 30px;
    }

    .adventures-layout {
        grid-template-columns: 1fr;
    }

    .adventure-sidebar {
        grid-template-columns: 1fr 1fr;
    }

    .adventure-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-left {
        justify-content: center;
        text-align: left;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 120px;
    }
}

@media (max-width: 700px) {
    .site-notice {
        padding: 12px 20px;
    }

    .site-notice span {
        font-size: .72rem;
    }

    .site-notice p {
        font-size: .85rem;
    }

    .adventures-hero {
        min-height: 76vh;
        background-position: center;
    }

    .adventures-hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
        letter-spacing: .05em;
    }

    .hero-rule::before,
    .hero-rule::after {
        width: 90px;
    }

    .hero-intro {
        font-size: .95rem;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .heading-line {
        display: none;
    }

    .adventure-sidebar {
        grid-template-columns: 1fr;
    }

    .adventure-form {
        grid-template-columns: 1fr;
    }

    .adventure-form input {
        height: 52px;
        text-align: center;
    }

    .adventure-form button {
        height: 52px;
        border-left: none;
        border-top: 1px solid rgba(242, 194, 129, .22);
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 34px 24px 125px;
    }

    .footer-cactus-art {
        width: 260px;
        right: 20px;
    }
}

@media (max-width: 460px) {
    .site-nav {
        font-size: .68rem;
        letter-spacing: .1em;
    }

    .brand img {
        width: 96px;
        height: 96px;
    }

    .adventures-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .adventure-copy {
        padding: 150px 20px 20px;
    }

    .adventure-meta a {
        width: 100%;
        margin-left: 0;
        margin-top: 6px;
        transition: .3s;
    }
}
