/* Editorial Luxury Engine - HighYieldPharm.com */
:root {
    --med-gold: #b2945e;    /* Sophisticated Gold Accent */
    --slate-text: #2f3542;  /* Medical Journal Charcoal */
    --bg-white: #ffffff;
    --border-lite: #ececec;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-white);
    color: var(--slate-text);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.editorial-container {
    max-width: 700px;
    margin-top: 100px;
    padding: 40px;
    text-align: center;
}

/* Elegant Serif for Authority */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--med-gold);
    margin: 30px auto;
}

.abstract-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #57606f;
    text-align: justify;
    margin-bottom: 50px;
}

.btn-med {
    border: 1px solid var(--med-gold);
    color: var(--med-gold);
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.4s;
}

.btn-med:hover {
    background-color: var(--med-gold);
    color: white;
}

footer {
    position: fixed;
    bottom: 30px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #a4b0be;
    text-transform: uppercase;
}
