h1.entry-title {
    display: none !important;
}

.kw-blog-card > .kw-blog-meta {
    display: none !important;
}

.kw-blog-card h4 > a {
    color: black !important;
    text-decoration: none !important;
}

.kw-blog-card h4 > a:hover {
    color: #035C3C !important;
}

.kw-sidebar-section > ol,
.kw-sidebar-section > ul {
    margin: 0 0 1.5em 1em;
}

.kw-sidebar {
    padding-right: 10px;
}

.kw-blog-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

#kw-blog-search {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.kw-blog-grid {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 2%;
}

.kw-blog-card {
    background: #00934517;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
    transition: all 0.3s ease;
}

.kw-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.kw-blog-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.kw-blog-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.kw-blog-card p {
    font-size: 14px;
    color: #555;
}

/* Detail Layout */
.kw-blog-detail-wrapper {
    display: grid;
    gap: 2%;
    grid-template-columns: 73% 25%;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.kw-sidebar {
    width: 100%;
}

.kw-sidebar h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.kw-sidebar ul {
    list-style: none;
    padding: 0;
}

.kw-sidebar li {
    margin-bottom: 10px;
    align-items: baseline !important;
}

.kw-sidebar a {
    text-decoration: none;
    color: black;
}

.kw-post-content {
    width: 100%;
    padding-right: 10px;
}

.kw-post-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ast-excerpt-container.ast-blog-single-element p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 1 line */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.kw-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.kw-featured-img img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.kw-content {
    font-size: 16px;
    line-height: 1.7;
}

.kw-cat-badge {
    display: inline-block;
    background-color: #035C3C;
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 10px;
    margin: 4px 4px 8px 0;
}

.kw-blog-meta {
    margin-bottom: 10px;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    .kw-blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2%;
    }

    h1.page-title.ast-archive-title {
        font-size: 16px !important;
        text-align: center;
    }

    .kw-blog-detail-wrapper {
        flex-direction: column;
    }

    .kw-sidebar,
    .kw-post-content {
        width: 100%;
    }

    .kw-sidebar {
        padding-right: 0px !important;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
  .authyo-table thead {
    display: none;
  }

  .authyo-table,
  .authyo-table tbody,
  .authyo-table tr,
  .authyo-table td {
    display: block;
    width: 100%;
  }

  .authyo-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  .authyo-table td {
    text-align: left;
    padding: 10px;
    position: relative;
    padding-left: 50%;
    box-sizing: border-box;
  }

  .authyo-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: bold;
    white-space: nowrap;
  }

  /* Auto-labeling using nth-child without HTML changes */
  .authyo-table td:nth-child(1)::before { content: "Platform"; }
  .authyo-table td:nth-child(2)::before { content: "Free"; }
  .authyo-table td:nth-child(3)::before { content: "Starter"; }
  .authyo-table td:nth-child(4)::before { content: "Pro"; }
  .authyo-table td:nth-child(5)::before { content: "Enterprise"; }
}

/* ✅ Fix: Pagination Styling */
.kw-pagination {
    display: flex;
    justify-content: center;
    margin: 32px 0;
    clear: both;
    width: 100%;
}

.kw-pagination .page-numbers {
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.kw-pagination .page-numbers.current {
    background: #0073aa;
    color: #ffffff;
    border-color: #0073aa;
}

.kw-pagination .page-numbers:hover {
    background: #0073aa;
    color: #ffffff;
    border-color: #0073aa;
}

.kw-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
    color: #64748b;
}