/* UnLockDesire - Experiences common styles */

.experience-page {
    background: #1a0000;
    color: #fff;
    min-height: 100vh;
}

.experience-header {
    background: linear-gradient(135deg, #800000, #4d0000);
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
}

.experience-header h1 {
    margin: 0;
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    letter-spacing: .03em;
}

.experience-header .subtitle {
    margin: .35rem 0 0;
    color: #f0dddd;
    font-size: clamp(.95rem, 2vw, 1.1rem);
    font-style: italic;
}

.experience-content {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.experience-cover {
    margin: 0 auto 2.25rem;
    max-width: 560px;
    border-radius: 14px;
    overflow: hidden;
    background: #2a0a0a;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .35);
}

.experience-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.experience-intro {
    font-size: 1.08rem;
    color: #f3e4e4;
    margin-bottom: 2rem;
}

.experience-story {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.85;
}

.experience-story p {
    margin: 0 0 1.25rem;
}

.experience-story .story-title {
    font-family: var(--font-system);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ff4500;
    margin: 2rem 0 1rem;
}

.experience-story ol {
    padding-left: 1.5rem;
    margin: 1rem 0 1.75rem;
}

.experience-story li {
    margin-bottom: .55rem;
    padding-left: .25rem;
}

.experience-story em {
    color: #f2dede;
}

.experience-end {
    margin-top: 3rem;
    padding: 1.5rem;
    border-left: 4px solid #ff4500;
    background: #2a0a0a;
    border-radius: 0 10px 10px 0;
    font-size: 1.15rem;
}

.experience-back {
    margin-top: 2.5rem;
    text-align: center;
}

.experience-back a {
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {
    .experience-content {
        width: min(100% - 1.25rem, 900px);
    }

    .experience-story {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Experiences landing */
.experiences-landing { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; padding: 2.5rem 0 4rem; }
.experiences-intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; color: #f3e4e4; line-height: 1.7; font-size: 1.08rem; }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.experience-card { display: block; overflow: hidden; color: inherit; text-decoration: none; background: #2a0a0a; border-radius: 14px; box-shadow: 0 12px 35px rgba(0,0,0,.30); transition: transform .2s ease, box-shadow .2s ease; }
.experience-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.42); }
.experience-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.experience-card-body { padding: 1.25rem 1.25rem 1.4rem; }
.experience-card-body h2 { margin: 0 0 .45rem; color: #fff; font-size: 1.35rem; }
.experience-card-body p { margin: 0; color: #f0dddd; line-height: 1.55; }
.experience-number { display: block; margin-bottom: .35rem; color: #ff4500; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 600px) { .experiences-landing { width: min(100% - 1.25rem, 1100px); padding-top: 1.5rem; } }

/* Landing cards without thumbnail images */
.experience-card { padding: 0; }
.experience-card-body { padding: 1.5rem 1.5rem 1.6rem; }
