/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Afacad:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root font-size for relative units */
:root {
    font-size: 16px; /* 1rem = 16px */
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #0b1324;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

html {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Main Backdrop */
.backdrop-blog {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: #0b1324;
    overflow-x: hidden;
    overflow-y: visible;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}



/* Decorative Ellipses (Scaled with relative units) */
.ellipse-decoration {
    position: absolute;
    width: 33vw;
    height: 28vw;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ellipse-1 { left: 78%; top: 39%; }
.ellipse-2 { left: 30%; top: 55%; }
.ellipse-3 { left: 9%; top: 3%; }

.ellipse-decoration::before {
    content: '';
    position: absolute;
    inset: -100% -80%;
    background-size: cover;
}

/* Small Ellipses */
.ellipse-decoration-small {
    position: absolute;
    width: 12vw;
    height: 11vw;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ellipse-small-1 { left: -3.7%; top: 37%; }
.ellipse-small-2 { left: 16.6%; top: 52%; }

.ellipse-decoration-small::before {
    content: '';
    position: absolute;
    inset: -170% -155%;
    background-size: cover;
}

/* Blog Content */
.blog-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 94.5rem; /* 1512px - same as other pages */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 4rem; /* Extra space before footer */
    box-sizing: border-box;
}

/* Coming Soon Title */
.coming-soon-title-container {
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
    text-align: center;
    width: 100%;
    padding: 5vh 2vw;
    min-height: 50vh;
}

.coming-soon-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0.075rem; /* relative spacing */
    color: white;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word;
}

/* Divider Line */
.divider-line {
    width: 90%;
    height: 0.25rem;
    background-color: white;
    margin: 2rem 0;
}

/* Blog Post Card 
.blog-post-card {
    width: 100%;
    max-width: 85rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.125rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
}
    */

/* Post Image
.post-image-container {
    flex: 1 1 20rem;
    min-height: 12rem;
    background-color: #d9d9d9;
    display: flex;
}

.post-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/
/* Logo Watermark 
.logo-watermark {
    position: absolute;
    width: 11rem;
    height: 5.8rem;
    opacity: 0.2;
}
*/
/* Post Content */
/*
.post-content-container {
    flex: 2 1 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.post-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    line-height: 1.2;
    color: #0857a0;
}

.post-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.2;
    color: #0857a0;
}

.post-date {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.2;
    color: #002d5c;
}


.post-arrow {
    width: 6rem;
    height: 1.5rem;
}

.post-arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/



/* Footer styles are in footer.css */
