

/* Polaroid tilt */
.polaroid {
    background: #fff;
    padding: 10px 10px 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
}

.tilt-1 {
    transform: rotate(-4deg);
}

.tilt-2 {
    transform: rotate(3deg);
}

.tilt-3 {
    transform: rotate(-2deg);
}

.tilt-4 {
    transform: rotate(5deg);
}

.tilt-5 {
    transform: rotate(-6deg);
}

.tilt-6 {
    transform: rotate(2deg);
}

.italic-serif {
    font-style: italic;
}

.reason-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Squiggle decoration via FA */
.deco-x {
    font-size: 1.1rem;
    opacity: 0.55;
}