/* CSS Reset - Cleaned and optimized for Lands & Legends project */

/* Universal box-sizing and base reset */
* {
    box-sizing: border-box;
    margin: 0;
    outline: 0;
    padding: 0;
}

/* Remove text decoration from links */
a {
    text-decoration: none;
}

/* Reset all HTML elements */
abbr,
acronym,
address,
applet,
big,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
ul,
var {
    border: 0;
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image optimization */
img {
    max-height: 100%;
    max-width: 100%;
    position: relative;
}

/* Utility class */
.hide {
    display: none;
}

/* Base body styles with Inter font */
body {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    background: #e8e4d2;
}



/* About Page Styles 
*/

.about-post-container {
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e4d2 100%);
    padding: 4rem 1rem;
}

.about-post-header {
    margin: 0 auto;
    text-align: center;
    max-width: 1400px;
    width: 100%;
}


.about-post-container h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #264570 !important;
    text-shadow: none !important;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 3;
}
.about-post-container .single-post-author-name, .about-post-container .single-post-date, .about-post-container .single-post-meta-separator {
    color: #264570 !important;
    text-shadow: none !important;
    font-weight: bold !important;
}
.about-post-container .single-post-author-avatar {
    width: 28px !important;
    height: 28px !important;
}