* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    height: 100%;
    width: 100%;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    background-color: rgb(10, 10, 11);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.site-header .header-title {
    color: white;
    font-size: 1.6rem;
}

.header-title a {
    text-decoration: none;
    color: white;
}
.site-header-nav {
    display: flex;
}
.site-header-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.site-header-nav ul a {
    color: rgb(210, 210, 211);
    cursor: pointer;
    text-decoration: none;
}

.site-main {
    flex: 1;
    margin-top: 100px;
    /* padding: 2rem; */
    background: #fff;
}

.convertkit-wrapper {
    background-color: #f5f5f5;
    padding: 48px 24px 24px;
    text-align: center;
}

.convertkit-wrapper__headline {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.convertkit-wrapper__copy {
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}

.seva-form .fields {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.seva-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.seva-form button {
    background: #2196f3;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.seva-form button:hover {
    background: #1976d2;
}

.convertkit-wrapper__disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
}

.site-footer {
    width: 100%;
    background-color: #0a0a0b;
    color: rgb(210, 210, 211);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer ul li a {
    color: rgb(210, 210, 211);
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer ul li a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #0d0d0d;
    color: white;
    padding: 6rem 1rem;
    text-align: center;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #d1d1d1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1rem;
    color: #a1a1a1;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-description a {
    color: #1e90ff;
    text-decoration: none;
}

.hero-description a:hover {
    text-decoration: underline;
}

.twitter-follow {
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.twitter-follow:hover {
    background: #222;
}

/* Articles section */
.articles {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.articles-title {
    text-align: center;
    font-size: 1.60rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.articles-link {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #1e90ff;
    text-decoration: none;
}
.articles-link:hover {
    text-decoration: underline;
}

.featured-article {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    border-radius: 6px;
    height: 350px;
}
.featured-content .article-category {
    font-size: 0.8rem;
    font-weight: bold;
    color: #1e90ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.featured-title {
  margin-top: 1rem;
}
.featured-desc {
    font-weight: 300;
    color: #5e5c5c;
    margin-top: 1rem;
}
.article-meta {
    font-size: 0.8rem;
    color: #5e5c5c;
    margin-top: 1rem;
}

.articles-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
}
.article-card {
    display: flex;
    flex-direction: column;
}
.article-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    height: 250px;
}
.article-content .article-category {
    font-size: 0.75rem;
    font-weight: bold;
    color: #1e90ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}
.article-card p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.article-card .article-meta {
    font-size: 0.75rem;
    color: #5e5c5c;
}
.article-description {
    font-weight: 300;
    color: #5e5c5c;
}
/* @media (max-width: 768px) {
  .featured {
    grid-column: span 1;
  }
} */

/* Contact page styles */
.contact {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.contact h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.contact a {
    color: #1e90ff;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
}

/* Note block */
.note {
    border-left: 4px solid #1e90ff;
    padding-left: 1rem;
    margin: 2rem 0;
    color: #444;
    background: #f9f9f9;
    font-size: 0.95rem;
}

/* Social icons floating left */
.social-icons {
    position: fixed;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: #111;
    text-decoration: none;
}

.social-icons a:hover {
    color: #1e90ff;
}

/* About page */
.about {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.about h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #333;
    font-size: 1rem;
}

.about-text a {
    color: #1e90ff;
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

/* Blog Post Page */
.post {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.post-category {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    color: #1e90ff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-heading {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.post-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 2rem;
}

.post-image {
    width: 100%;
    border-radius: 6px;
    margin: 2rem 0;
}

.post-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.post-content a {
    color: #1e90ff;
    text-decoration: none;
}
.post-content a:hover {
    text-decoration: underline;
}

.post-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.post-content blockquote {
    border-left: 4px solid #1e90ff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #444;
    font-style: italic;
    background: #f9f9f9;
}

/* Speaking Page */
.speaking {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.speaking h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.speaking-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.speaking-links {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.speaking-links a {
    color: #1e90ff;
    text-decoration: none;
}
.speaking-links a:hover {
    text-decoration: underline;
}

.speaking h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.speaking p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.note {
    border-left: 4px solid #1e90ff;
    padding-left: 1rem;
    margin: 2rem 0;
    color: #444;
    background: #f9f9f9;
    font-size: 0.95rem;
    font-style: italic;
}

/* Conference Table */
.conference-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.conference-table th,
.conference-table td {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    text-align: left;
}

.conference-table th {
    background: #f2f2f2;
    font-weight: bold;
}

.conference-table td a {
    color: #1e90ff;
    text-decoration: none;
}
.conference-table td a:hover {
    text-decoration: underline;
}

.cursor-pointer {
    cursor: pointer;
}

.mobile_nav_icon > i {
    color: #fff !important;
    font-size: 2rem;
    cursor: pointer;
}
.mobile_nav_icon {
    display: none;
}

.mobile-profile {
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border-radius: 3rem;
}

.mobile-profile img {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    object-fit: cover;
}

.table-wrapper-container {
    width: 100%;
}

@media (max-width: 868px) {
    .mobile_nav_icon {
        display: block;
    }

    .site-header-nav {
        display: none;
    }
}

@media (max-width: 768px) {

    .featured-article {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .table-wrapper-container {
        width: 100vw;
        overflow-x: auto;
    }

}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.375rem !important;
}

.mt-2 {
    margin-top: 0.75rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 2.75rem !important;
}
