
/*
 Theme Name:   Astra Child - TweepML
 Theme URI:    https://your-site.com
 Description:  Custom child theme for TweepML header
 Author:       You
 Author URI:   https://your-site.com
 Template:     astra
 Version:      1.0.14
 Text Domain:  astra-child
*/

/* === TWEEPML 2012 HEADER STYLE === */
/* Hide any leftover Astra header */
.ast-primary-header,
.ast-above-header,
.ast-below-header,
.ast-mobile-header,
.site-header {
    display: none !important;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #666666;
    font-size: 14px;
    font-family: "Arial";
    overflow-x: hidden;
}
/* =========================================
   HEADER - BASE STYLES
   ========================================= */
.header {
    width: 100%;
    padding: 15px 0px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 999;
    background-color: #3893dc;
}

.header .header-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header .icon {
    background-image: url('images/toolbox.png');
    background-repeat: no-repeat;
    background-position: left 0px top 50%;
    background-size: 60px auto;
    flex: 1;
    min-width: 280px;
}

.header #title {
    font-family: "Arial Narrow", Arial, sans-serif;
    color: white;
    margin-top: 10px;
}

.header #title .logo-box img {
    height: 70px;
    width: auto;
}

.header .tagline-link p {
    margin: 0 0;
    padding: 0;
    font-size: 15px;
    color: #a0d0ff;
    line-height: 1.2;
}

.header .tagline-link p strong,
.header .tagline-link p {
    color: #fff !important;
}

/* Main Navigation */
.header-main-menu {
    flex: 2;
    text-align: center;
    justify-content: flex-end;
    display: inline-flex;
}

.header-main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.header-main-menu li {
    margin: 0;
}

.header-main-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    padding: 10px 5px;
    display: block;
    font-size: 16px;
    transition: background 0.3s;
    border-radius: 6px;
}

.nav .login {
    position: static; 
    display: block;
}

.nav .login ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.nav .login li {
    display: inline-block;
}

.nav .login a {
    display: block;
    padding: 10px 16px;
    background-color: #5399BB;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    border-right: 1px solid white;
    transition: background 0.3s;
}

.nav .login a:hover {
    background-color: #467d99;
}

.nav .login li:first-child a {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.nav .login li:last-child a {
    border-right: none;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}
div#footer_bar {
    background-color: #3893dc;
    /* background-color: #0e172a; */
    border-top: 1px solid #18294d;
    padding-top: 20px;
}
#footer {
    width: 1140px;
    margin: 0 auto;
}
.footer-logo {
    padding: 20px 0 0;
}

.footer-logo img {
    height: 100px;
}

#footer .nav #center-thing {
    text-align: center;
}

#footer .nav ul {
    margin:0;
    list-style-type: none !important;
}
#footer .nav ul li {
    display: inline-block;
    margin: 6px 0;
    font-size: 1em;
    color: white;
}
#footer .nav ul li a {
    padding: 6px;
    color: white;
}
#footer p.copy_left {
    font-size: 0.75em;
    color: #ffffff;
    text-align: center;
}
.copy_right svg {
    margin-left: 20px;
}
.copy_right a {
    margin-left: 20px;
}
.footer_box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
#footer_bar abbr[title] {
    border-bottom: 0;
    cursor: pointer;
}

/* ============================================= */
/* Custom Hero Section           */
/* ============================================= */

.custom-hero-section {
    padding: 100px 20px 80px;
    background: #f8fafc; /* very light gray-blue */
    position: relative;
    overflow: hidden;
}
.custom-hero-illustration img {
    border-radius: 8px;
}
.custom-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}
.custom-hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}
.custom-hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}
.custom-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
}
.custom-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.custom-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.custom-btn-primary {
    background: #3893dc;
    color: #ffffff;
}
.custom-btn-primary:hover {
    background: #3893dc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
    color: #fff;
}
.custom-btn-secondary {
    background: transparent;
    color: #3995dc;
    border: 2px solid #3994dc;
}
.custom-btn-secondary:hover {
    background: #3995db;
    color: #ffffff;
}

.custom-hero-illustration {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*new-homepage-css*/

/*term page css*/
.partition-box .term-content {
    margin-bottom: 22px;
}

.partition-box .term-content h1.term-heading {
    font-size: 32px;
    line-height: 1;
    margin: 20px 0;
    color: #000;
}

.partition-box .term-content  p.term-date {
    font-size: 16px;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
}

.partition-box .term-content p {
    font-size: 16px;
    color: #000;
    margin: 20px 0;
}

.partition-box .term-content h2 {
    font-size: 24px !important;
    color: #000;
}

.partition-box .term-content h3 {
    font-size: 16px;
    color: #000;
    margin: 20px 0;
}

.partition-box .term-content ul li {
    color: #000;
    font-size: 16px;
}

.partition-box .term-content ul li::marker {
    color: #666666;
}

.ast-separate-container .ast-article-post{
    border: 1px solid #F7DE77;
    border-radius: 10px;
}
.blog .secondary .sidebar-main {
    background-color: #FFFFFF;
    padding: 15px;
    border: 1px solid #F7DE77;
    border-radius: 6px;
}
.main_blog .ast-breadcrumbs-wrapper {
    position: absolute;
    width: 100%;
    top: -10px;
}

.main_blog .ast-container {
    position: relative;
}
.main_blog .ast-breadcrumbs-wrapper ul li {
    font-size: 16px;
}
.blog #primary {
    margin-top: 0px !important;
}
.blog .widget-area {
    margin-top: 0px !important;
}
.blog_banner {
    padding: 150px 0;
    background-image: url(images/blog-banner.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
}

.blog_banner.modern_banner {
    background-image: url(images/blog-banner.webp);
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 150px 0;
}
.single-post .ast-container div#primary .ast-post-format-.single-layout-1
 {
    padding: 20px;
    border: 1px solid #3893dc;
    border-radius: 4px;
    box-shadow: 1px 1px 7px 2px rgb(0 0 0 / 20%);
}
.quick-summary-box {
    font-style: italic;
    font-size: 16px;
    position: relative;
    padding: 20px 30px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
}
.quick-summary-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #5cb8e6, #1e90ff);
    opacity: 1;
    transition: opacity 0.4s;
}
.single-post .ast-container div#primary .ast-post-format-.single-layout-1 .entry-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}
.blog_banner.modern_banner .blog_container.modern_article_header .article-meta.modern-meta {
    color: #fff;
    position: relative;
    font-size: 15px;
}

.blog_banner .blog_container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}
.main_blog .ast-container {
    max-width: 1140px;
    width: 100%;
    box-shadow: unset;
    border: 0px;
}
.main_blog .ast-container .blog_grid-warper .ast-row {
    gap: 20px;
    margin: 0;
}

.main_blog .ast-container .blog_grid-warper .ast-row article {
    width: calc(100% / 3 - 14px) !important;
    box-shadow: unset;
    border-radius: 5px;
    border: 0px;
    margin-bottom: 0;
    transition: 0.4s;
    padding: 0;
}
.single-post .ast-container {
    max-width: 1140px;
    position: relative;
    margin-top: 50px;
    width: 100%;
    box-shadow: unset;
    border: 0px;
}
.single-post .ast-container .ast-breadcrumbs-wrapper {
    position: absolute;
    top: -10px;
}
.single-post .ast-container .ast-breadcrumbs-wrapper ul li.trail-item {
    font-size: 16px;
}
.ast-single-related-posts-container .ast-related-posts-wrapper article {
    border: 0px !important;
    transition: 0.4s;
    box-shadow: 1px 1px 7px 2px rgb(0 0 0 / 20%);
}
/*.ast-single-related-posts-container .ast-related-posts-wrapper article:hover{
    box-shadow: 1px 1px 7px 2px rgb(0 0 0 / 20%);
}*/

.ast-single-related-posts-container .ast-related-posts-wrapper {
    gap: 15px;
}

.ast-single-related-posts-container .ast-related-posts-wrapper article .entry-meta span, .ast-single-related-posts-container .ast-related-posts-wrapper article .entry-meta,.ast-single-related-posts-container .ast-related-posts-wrapper article .entry-meta span a {
    font-size: 12px;
}
.ast-single-related-posts-container .ast-related-posts-wrapper article header.entry-header.related-entry-header {
    padding: 0 15px;
}

.ast-single-related-posts-container .ast-related-posts-wrapper article .entry-content.clear {
    padding: 0 15px;
    margin-bottom: 15px;
}
.post-share-box a.share-btn {
    text-decoration: none;
    padding: 7px 10px;
    background-color: #006cd1;
    color: #fff;
    border-radius: 4px;
}
.post-share-box a.share-btn.wa {
    background-color: #24d366;
}

.post-share-box a.share-btn.li {
    background-color: #0b66c2;
}

.post-share-box a.share-btn.tw {
    background-color: #000;
}

.post-share-box a.share-btn.fb {
    background-color: #1877F2;
}
.ast-separate-container .post-navigation .nav-links {
    padding-bottom: 20px;
}
.footer-logo-box img {
    height: 60px;
    margin-bottom: 20px;
}
.ast-single-related-posts-container .ast-related-posts-wrapper article .entry-content.clear p {
    padding: 0;
}
.ast-single-related-posts-container .ast-related-posts-wrapper {
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.main_blog .ast-container .blog_grid-warper .ast-row article .ast-post-format-.blog-layout-4.ast-article-inner {
    box-shadow: unset;
}
.main_blog .ast-container .blog_grid-warper .ast-row article {
     box-shadow: 1px 1px 7px 2px rgb(0 0 0 / 20%);
}
.main_blog .ast-container .blog_grid-warper .ast-row article .ast-post-format-.ast-no-thumb.blog-layout-4.ast-article-inner {
    padding: 20px 0;
}
.main_blog .ast-container .blog_grid-warper .ast-row article .ast-post-format-.ast-no-thumb.blog-layout-4.ast-article-inner .entry-header .entry-meta span, .main_blog .ast-container .blog_grid-warper .ast-row article .ast-post-format-.ast-no-thumb.blog-layout-4.ast-article-inner .entry-header .entry-meta span a {
    color: #777373;
}
.main_blog .ast-container .blog_grid-warper .ast-row article .ast-post-format-.ast-no-thumb.blog-layout-4.ast-article-inner .ast-read-more-container a {
    color: #3893dc;
}

.blog_banner .blog_container h1 {
    text-align: center;
    font-size: 45px;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}
.main_blog .ast-container .blog_grid-warper .ast-row article .ast-post-format-.ast-no-thumb.blog-layout-4.ast-article-inner .entry-header .entry-meta {
    color: #777373;
}
.blog_banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 84%);
    top: 0;
    left: 0;
}
.ast-single-related-posts-container.ast-container-- {
    padding-top: 50px;
}

.ast-single-related-posts-container.ast-container-- h2.ast-related-posts-title {
    font-size: 30px;
}
.blog #secondary h2 {
    background-image: url(images/chick-small.gif);
    background-repeat: no-repeat;
    padding-left: 45px;
    line-height: 2em;
    font-size: 1.7em;
    color: #39a9cc;
    margin: 0px;
}
.single article {
    border: 1px solid #f7de77 !important;
    border-radius: 10px;
}
.post-share-box {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.post-share-box .share-label {
    font-weight: bold;
    margin-right: 10px;
}

.post-share-box .share-btn {
    margin-right: 12px;
    text-decoration: none;
    font-size: 14px;
    color: #0066cc;
}

.post-share-box .share-btn:hover {
    text-decoration: underline;
}

/* =========================================
   FEATURED CURATED LISTS SECTION -
   ========================================= */
.featured-lists-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e1f0ff 100%);
    position: relative;
    overflow: hidden;
}

.featured-lists-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="4" fill="%235cb8e630"/><circle cx="80" cy="80" r="6" fill="%2387ceeb25"/></svg>') repeat;
    opacity: 0.4;
    pointer-events: none;
}

.featured-lists-section .container {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 16px;
    background: linear-gradient(90deg, #000, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.featured-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 70px;
}

.list-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #5cb8e6, #1e90ff);
    opacity: 0;
    transition: opacity 0.4s;
}

.list-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(92, 184, 230, 0.22);
    border-color: #5cb8e6;
}

.list-card:hover::before {
    opacity: 1;
}

.card-icon {
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #45a9ef;
    line-height: 1.3;
}

.card-count {
    font-size: 1rem;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.card-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 2rem;
    color: #5cb8e6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.list-card:hover .card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* View All Button - Matches your hero buttons */
.btn-view-all {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #5cb8e6, #1e90ff);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(92, 184, 230, 0.4);
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(92, 184, 230, 0.5);
    background: linear-gradient(135deg, #4aa3d5, #1a7ce0);
}
.card-icon img {
    max-width: 70px;
}
.featured-lists-section .section-footer {
    text-align: center;
}

.featured-lists-section .section-footer a:hover {
    background: #1e293b;
    color: #fff;
    transition: all 0.3s 
ease;
}
.ast-related-posts-wrapper article .reading-time {
    display: none;
}

/* Trending Communities Section */
.trending-communities {
    padding: 100px 0;
    background: #fafafa;
}

.trending-communities .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trending-communities .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4rem;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.community-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: #334155;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #3893dc;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
}

.card-desc {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #3893dc;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

/* ====================== LATEST INSIGHTS SECTION ====================== */
.latest-insights {
    padding: 100px 0;
    background: rgb(176 176 176 / 40%);
}

.insights-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.insights-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.insights-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Card Styles */
.insight-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.insight-card img {
    width: 100%;
    /* height: 220px; */
    object-fit: cover;
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.35;
}

.insight-card h3 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s;
}

.insight-card h3 a:hover {
    color: #3893dc;
}

.excerpt {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: #3893dc;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.read-more:hover {
    color: #3893dc;
}

/* Make entire card clickable (optional visual cue) */
.card-link {
    display: block;
}
/* ====================== CATEGORY BROWSER SECTION ====================== */
.category-browser {
    padding: 100px 0;
    background: #ffffff;
}

.category-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Category Block */
.category-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.35s 
ease;
    position: relative;
    overflow: hidden;
}

.category-block:hover {
    transform: translateY(-8px);
    background: #3893dc;
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.category-block:hover .category-icon,
.category-block:hover .category-name {
    color: white !important;
}

/* Icons */
.category-icon {
    font-size: 48px;
    transition: color 0.35s ease;
}

.category-name {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.35s ease;
}

/* Optional: Add subtle background pattern on hover */
.category-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.category-block:hover::before {
    opacity: 1;
}
/* ====================== ABOUT TWEEPML SECTION ====================== */
.about-tweepml {
    padding: 100px 0;
    background: #0f172a;       
    color: #e2e8f0;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-text {
    font-size: 19px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

.about-btn:hover {
    background: #60a5fa;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

/*about page css*/
.ast-container {
    max-width: 900px;
    padding: 40px 50px;
    margin: 30px auto;
    border: 1px solid #3893dc;
    border-radius: 8px;
    box-shadow: 0px 4px 17px 0px rgb(121 121 121);
}

.list_box {
    max-width: 1140px;
    margin: 0 auto;
}

.list_box .page-title.ast-archive-title {
    text-align: center;
    font-size: 45px;
    color: #000;
    text-transform: uppercase;
}

.list_box .ast-row article {
    width: calc(100% / 3 - 14px) !important;
        box-shadow: 1px 1px 7px 2px rgb(0 0 0 / 20%);
}
.list_box .ast-breadcrumbs-wrapper {
    margin-top: 20px;
}

.list_box div#primary {
    margin-top: 20px;
}


.list_box div#primary section.ast-archive-description {
    padding: 30px 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.list_box div#primary section.ast-archive-description .ast-author-bio h1.page-title.ast-archive-title {
    font-size: 22px;
}

.list_box div#primary main#main .ast-row {
    margin: 0;
}

.list_box div#primary main#main .ast-row article {
    padding: 0;
    border: 0px;
}
.list_box div#primary section.ast-archive-description .ast-author-bio {
    order: 2;
    margin-top: 10px;
}

.list_box div#primary section.ast-archive-description .ast-author-avatar {
    width: 70px;
    height: 70px;
}

.list_box div#primary section.ast-archive-description .ast-author-avatar img.avatar.avatar-120.photo {
    width: 100%;
    height: 100%;
}
.list_box .entry-meta span.reading-time {
    color: #046bd2 !important;
}
.list_box .read-more a {
    color: #046bd2;
}

.list_box .ast-row {
    gap: 20px;
    margin: 0;
}


.summary-span {
    font-style: normal;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
a.ast-related-post-link {
    text-decoration: auto;
}
.ast-custom-post-type .ast-single-related-posts-container .ast-related-posts-wrapper article header.entry-header.related-entry-header {
    padding: 0 15px;
    margin: 1em auto 1em auto;
}
.ast-related-post-title.entry-title {
    font-weight: 100 !important;
}
.ast-custom-post-type .ast-related-posts-title-section {
    padding-bottom: 20px;
}
.ast-custom-post-type .ast-single-related-posts-container .ast-related-posts-wrapper {
    grid-template-columns: repeat(3, 1fr);
    display: grid !important;
    gap: 15px;
}
.ast-custom-post-type .ast-single-related-posts-container.ast-container-- h2.ast-related-posts-title {
    font-size: 30px;
    text-align: center;
}
.ast-custom-post-type .ast-container div#primary .ast-post-format-.single-layout-1 .entry-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}
.ast-custom-post-type  .ast-container div#primary article .single-layout-1 .post-thumb-img-content.post-thumb img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ast-custom-post-type .ast-container div#primary article .single-layout-1 .post-thumb-img-content.post-thumb {
    height: 500px;
    position: relative;
}
.ast-custom-post-type .ast-container div#primary {
    margin-top: 20px;
}
.ast-custom-post-type .ast-container div#primary .ast-post-format-.single-layout-1 {
    padding: 20px;
    border: 1px solid #3893dc;
    border-radius: 4px;
    box-shadow: 1px 1px 7px 2px rgb(0 0 0 / 20%);
}
.ast-custom-post-type .ast-container div#primary article {
    border: 0px !important;
    padding: 0;
}
.ast-custom-post-type .ast-container .ast-breadcrumbs-wrapper {
    position: absolute;
    top: -10px;
}
.ast-custom-post-type .ast-container .ast-breadcrumbs-wrapper ul li.trail-item {
    font-size: 16px;
}
.ast-custom-post-type .ast-container {
    max-width: 1140px;
    position: relative;
    margin-top: 50px;
    width: 100%;
    box-shadow: unset;
    border: 0px;
}
.single-post .ast-container div#primary {
    margin-top: 20px;
}

.single-post .ast-container div#primary article {
    border: 0px !important;
    padding: 0;
}
.single-post .ast-container div#primary div#comments div#respond {
    padding: 20px;
    background-color: #cfe1f2;
}
.single-post .ast-container div#primary article .single-layout-1 .post-thumb-img-content.post-thumb {
    height: 500px;
    position: relative;
}


.single-post .ast-container div#primary article .single-layout-1 .post-thumb-img-content.post-thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */
   
@media (max-width: 1140px) {
    #footer{
        width: 100% !important;
    }   
}

@media (min-width: 1024px) {
    .insights-grid { grid-template-columns: repeat(4, 1fr); }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 60%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 993px) {
    .ast-right-sidebar #secondary {
        padding-left: 25px;
    }
}
/* Tablet & below */
@media (max-width: 992px) {
    .header {
        height: 100px;
    }
    .header button.mobile-menu-toggle:hover {
    background-color: unset;
    border: 0px;
    box-shadow: unset;
}
.header-wrapper nav.header-main-menu.mobile-active {
    margin-top: 0;
    background-color: #37a6d8;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.header-wrapper nav.header-main-menu.mobile-active ul {
    gap: 0;
}
.header-wrapper nav.header-main-menu.mobile-active ul li a {
    margin: 0;
}
    .header #title {
        padding-left: 120px;
    }
    
    .header .icon {
        background-size: 100px auto;
        background-position: left 20px top 50%;
    }
    
    .header-main-menu ul {
        gap: 8px;
    }
    
    .header-main-menu a {
        padding: 8px 10px;
        font-size: 0.95em;
    }
        .custom-hero-title {
        font-size: 42px;
    }
    .custom-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .custom-hero-content {
        max-width: 100%;
    }
    .custom-hero-buttons {
        justify-content: center;
    }
     .featured-lists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .communities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px){
    .ast-container {
    max-width: 100%;
    padding: 30px 20px;
    margin: 30px auto;
}
}

/* Mobile - Show hamburger */
@media (max-width: 767px) {
    .header {
        padding: 35px 15px 10px;
    }

    .header .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header .icon {
        width: 100%;
        min-width: auto;
        background-position: left center;
        padding-left: 50px;
        background-size: 40px auto;
    }

    .header #title {
        padding-left: 0;
        margin-top: 0;
    }

    .header #title .logo-box img {
        height: 30px;
    }

    .header .tagline-link p {
        font-size: 15px;
    }

    /* Show hamburger */
        .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 32px;
    }

    /* Hide menu by default on mobile */
    .header-main-menu,
    .nav .login {
        display: none;
        width: 100%;
        margin-top: 20px;
    }

    .header-main-menu ul,
    .nav .login ul {
        flex-direction: column;
    }

    .header-main-menu li,
    .nav .login li {
        width: 100%;
        text-align: center;
    }

    .header-main-menu a,
    .nav .login a {
        padding: 14px;
        border-radius: 6px;
        margin-bottom: 4px;
    }

    .nav .login a {
        border-right: none !important;
    }

    /* Show when menu is open */
    .header-main-menu.mobile-active,
    .nav .login.mobile-active {
        display: block;
    }
        .custom-btn {
        justify-content: center;
    }
        .custom-hero-container {
        gap: 30px;
    }
     .custom-hero-section {
        padding: 80px 20px 60px;
    }
    .custom-hero-title {
        font-size: 36px;
    }
    .custom-hero-subtitle {
        font-size: 18px;
    }
    .abstract-pattern {
        width: 100%;
        height: auto;
    }
    .abstract-pattern img {
        border-radius: 12px;
    }
    .main_blog .ast-container .blog_grid-warper .ast-row article {
     width: 100%  !important;
}
  .featured-lists-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .featured-lists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .list-card {
        padding: 32px 24px;
    }
    .featured-lists-section  .section-header {
    margin-bottom: 20px;
}
    .about-tweepml {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 36px;
    }
    
    .about-btn {
        padding: 13px 28px;
        font-size: 15px;
    }
    .archive .list_box .ast-row article {
        width: 100% !important;
}
.list_box {
    padding: 0 20px;
}
.ast-author-avatar {
    text-align: center;
}
.main_blog .ast-breadcrumbs-wrapper {
    right: 0;
    left: 20px;
}
.blog_banner .blog_container h1 {
    font-size: 26px;
}
.main_blog div#primary {
    padding-top: 20px;
}
.modern_article_header {
    padding: 0 20px;
}
.single-post .ast-container .quick-summary {
    padding-top: 20px;
}
.ast-single-related-posts-container .ast-related-posts-wrapper {
        grid-template-columns: 1fr;
}
.ast-custom-post-type .ast-single-related-posts-container .ast-related-posts-wrapper {
        grid-template-columns: 1fr;
}
.single-post .ast-container div#primary article .post-thumb-img-content.post-thumb {
    height: auto;
}
}
.single-post .ast-container .reading-time {
    display: none;
}

@media (min-width: 640px) {
/*    .insights-grid { grid-template-columns: repeat(2, 1fr); }*/
   /* .category-grid {
       grid-template-columns: auto;
}*/

.category-browser {
    padding-top: 40px;
}
}

@media (max-width: 640px) {
    .communities-grid {
        grid-template-columns: 1fr;
    }
    .trending-communities {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
/* Extra small phones */
@media (max-width: 480px) {
    .header {
        height: 120px;
    }
    .header .icon {
        padding-left: 90px;
        background-size: 70px auto;
    }

    .header #title .logo-box img {
        height: 50px;
    }

    .header .tagline-link p {
        font-size: 1.1em;
    }
     .custom-hero-title {
        font-size: 32px;
    }
    .custom-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
    .custom-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
     .section-title {
        font-size: 2.2rem;
    }
    
    .btn-view-all {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
}
.ast-custom-post-type .reading-time {
    display: none;
}
.ast-single-post .entry-title, .ast-single-post .entry-title a {
    line-height: 1.2;
    color: var(--ast-global-color-2);
    font-weight: 500;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
}
.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none;
}




























