/* ==========================================================================
   RESET & SYSTEM BASE SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', 'Segoe UI', sans-serif;
    background-color: #fcf8f9;
    color: #2c3e50;
    line-height: 1.65;
    font-size: 15.5px;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

img {
    max-width: 100%;
    display: block;
}

section {
    margin-bottom: 50px;
}

/* ==========================================================================
   GLOBAL UTILITIES & TYPOGRAPHY
   ========================================================================== */
.block-heading {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
    letter-spacing: -0.3px;
}

.block-heading::before {
    content: '';
    position: absolute;
    left: 0; top: 2px; bottom: 2px; width: 5px;
    background: linear-gradient(to bottom, #ff527b, #ff7697);
    border-radius: 10px;
}

.block-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Base Badges & Colors */
.meta-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cat-wellness { background: linear-gradient(135deg, #2ed573 0%, #26af5f 100%); }

.meta-badge-premium {
    background: rgba(255, 82, 123, 0.1);
    color: #ff527b;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    align-self: flex-start;
    margin-bottom: 14px;
}

/* Micro-interaction Keyframes */
@keyframes smoothBounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-6px) scale(1.08); }
}

@keyframes pulseHint {
    0% { opacity: 0.6; }
    50% { opacity: 1; transform: translateX(-2px); }
    100% { opacity: 0.6; }
}