.about-hero .title {
    max-width: 820px;
}

.about-page {
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08)),
            var(--text-section-bg);
}

.about-story-section {
    align-items: stretch;
}

.story-card {
    height: 100%;
    padding: 1.6rem;
    border: 2px solid rgba(23, 23, 23, 0.88);
    border-radius: 1.4rem;
    background: var(--card-bg);
    box-shadow: 5px 5px 0 rgba(23, 23, 23, 0.2);
}

.story-card--main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.story-card p {
    margin-bottom: 0.85rem;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.story-sticker {
    position: relative;
    margin-top: 1.35rem;
    padding: 1rem 1.05rem;
    border: 2px solid #111111;
    border-radius: 14px;
    background:
            linear-gradient(135deg, transparent 0, transparent calc(100% - 24px), rgba(17, 17, 17, 0.12) calc(100% - 23px), rgba(17, 17, 17, 0.12) calc(100% - 21px), #f4bf56 calc(100% - 20px)),
            linear-gradient(180deg, #fff6c8 0%, #ffe9a0 100%);
    box-shadow: 4px 5px 0 rgba(17, 17, 17, 0.84);
    color: #1f1f1f;
    font-weight: 650;
    line-height: 1.5;
}

.story-sticker::before {
    content: "";
    position: absolute;
    top: -0.78rem;
    left: 1.35rem;
    width: 4.8rem;
    height: 1.15rem;
    border: 2px solid #111111;
    border-radius: 5px;
    background:
            repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.28) 0,
                    rgba(255, 255, 255, 0.28) 7px,
                    rgba(255, 207, 116, 0.36) 7px,
                    rgba(255, 207, 116, 0.36) 14px
            ),
            rgba(255, 244, 204, 0.88);
    box-shadow: 0 3px 0 rgba(17, 17, 17, 0.72);
    transform: rotate(-3deg);
}

.story-sticker::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 1.7rem;
    height: 1.7rem;
    border-left: 2px solid #111111;
    border-top: 2px solid #111111;
    border-radius: 10px 0 12px 0;
    background: #f1bf55;
    box-shadow: -3px -3px 0 rgba(17, 17, 17, 0.08);
}

.story-sticker--first {
    transform: rotate(-0.7deg);
}

.story-sticker--second {
    background:
            linear-gradient(135deg, transparent 0, transparent calc(100% - 24px), rgba(17, 17, 17, 0.1) calc(100% - 23px), rgba(17, 17, 17, 0.1) calc(100% - 21px), #d8e9ff calc(100% - 20px)),
            linear-gradient(180deg, #f6fbff 0%, #dcebff 100%);
    transform: rotate(0.55deg);
}

.story-sticker--third {
    background:
            linear-gradient(135deg, transparent 0, transparent calc(100% - 24px), rgba(17, 17, 17, 0.1) calc(100% - 23px), rgba(17, 17, 17, 0.1) calc(100% - 21px), #cbe9dc calc(100% - 20px)),
            linear-gradient(180deg, #f7fff9 0%, #d8f3e4 100%);
    transform: rotate(-0.35deg);
}

.story-sticker--fourth {
    background:
            linear-gradient(135deg, transparent 0, transparent calc(100% - 24px), rgba(17, 17, 17, 0.1) calc(100% - 23px), rgba(17, 17, 17, 0.1) calc(100% - 21px), #e8d8ff calc(100% - 20px)),
            linear-gradient(180deg, #fffaff 0%, #efe0ff 100%);
    transform: rotate(0.45deg);
}

.about-image {
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(5px 5px 0 rgba(23, 23, 23, 0.2));
}

.about-cta {
    margin-top: 2.5rem;
}

.about-start-link.button.is-dark {
    min-height: 3.4rem;
    padding: 0.85rem 1.5rem;
    border: 2px solid #000000;
    border-radius: 14px;
    box-shadow: 5px 5px 0 #000000;
    font-weight: 900;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.about-start-link.button.is-dark:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 0 #000000;
}

.about-start-link.button.is-dark:active {
    transform: translateY(0);
    box-shadow: 3px 3px 0 #000000;
}

.about-start-link.button.is-dark:focus-visible {
    outline: 3px solid rgba(60, 86, 204, 0.55);
    outline-offset: 3px;
}

@media screen and (max-width: 768px) {
    .hero.is-dark .hero-body {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .story-card--main {
        padding: 0;
    }

    .story-sticker {
        transform: none;
    }
}
