* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - Sticky at top */
header {
    position: sticky;
    top: 0;
    background: #000;
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 300px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

a {
    text-decoration: none;
    color: var(--black);
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--black);
    text-decoration: none;
}

h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2rem;
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    color: #000;
    font-weight: 400;
}

h3 {
    font-size: 1.4rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
    margin-top: 2rem;
}

/* Article bullet list styles */
.content-block ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.content-block ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #000;
}

.content-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #000;
    font-size: 1.3rem;
    top: -6px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.bold_600 {
    font-weight: 600;
}

.btn-pill-top {
    background-color: #fff;
    color: #000 !important;
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color .3s ease, color .3s ease, border .3s ease,
                opacity .6s ease-out, transform .6s ease-out;
}

.btn-arrow {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

/* Content - Scrollable */
main {
    flex: 1;
    padding: 2rem;
    background: #f5f5f5;
    overflow-y: auto;
}

.postDetail {
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    
    align-items: center;
    color: #000;
    display: flex;
    justify-content: space-between;
    gap: 0;
}
.postDetail-text {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 0.35rem; /* only between date • bullet • time */
}

.postDetail-share {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}
.postAuthor {
    padding: 1rem 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;  
    color: #000;
}
.postDetail-bullet {
    display: inline-block;
    font-size: 10px;
    padding-left: 6px;
    padding-right: 6px;
}
.postDetail-author {
    padding: 3px 6px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 0.9rem;
}
.postDetail-menu {
    padding: 3px 6px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 0.9rem;
    display: inline-flex;      
    align-items: center;
    color: #000;
    background-color: transparent;
    transition: color 0.25s ease, background-color 0.25s ease;
}
.postDetail-menu:hover {
  color: #fff;
  background-color: #000;
}

.postDetail-menu::before {
    content: "\2630";
    margin-right: 6px;
    font-size: 14px;
    line-height: 1;            
}

.postDetail-cta {
    padding: 3px 6px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 0.9rem;
    display: inline-flex;      
    align-items: center; 
    margin-top: 2rem;
    color: #000;
    background-color: transparent;
    transition: color 0.25s ease, background-color 0.25s ease;
}
.postDetail-cta:hover {
  color: #fff;
  background-color: #000;
}

.postDetail-author-menu {
  padding: 3px 6px;
  border: 1px solid #000;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #000;
  background-color: transparent;
}

.content-block {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
}
.content-block-index {
    background: white;
    padding: 2rem;
    margin-bottom: 5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.content-block-index:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);  
    transform: translateY(-2px);                 
}

.content-block h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.content-block p {
    line-height: 1.7;
    color: #000;
    margin-bottom: 0.8rem;
}

.article-image-placeholder {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
}
.article-image-placeholder-index {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Legal Footer Styles */
footer {
    background: #000;
    color: white;
    padding: 40px 2rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

.legal-links {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-bottom: 20px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.disclaimer {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.disclaimer p {
    margin-bottom: 10px;
}

/* Hover Effects (Only for Hover Devices) */
@media (hover: hover) {
    .btn-pill-top:hover {
        background: transparent;
        border: 1px solid #fff;
        color: #fff !important;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .nav {
        gap: 10px;
    }
    
    h1 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 2rem;
    }
    
    h2 {
    font-size: 1.9rem;
    color: #000;
    font-weight: 400;
    }
    
    .content-block h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.9rem;
    font-weight: 400;
    }
    
    h3 {
    font-size: 1.3rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
    margin-top: 2rem;
}
    
    #signInLink {

        font-size: 14px;
    }
    
    .btn-pill-top {
        display: none;
    }
    
    main {
        padding: 1.5rem 1rem;
    }
    
    .content-block-index {
    padding: 1.5rem;
    margin-bottom: 3rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    footer {
        padding: 30px 1.5rem 1.5rem;
    }

}
/* Social Share Buttons */
.social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.share-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    text-decoration: none;
}

.share-btn .share-icon {
    width: 18px;
    height: 18px;
}
