/* ========================================
   Technical Information Page
   ======================================== */

/* Hero */
.ti-hero {
    padding: 60px 20px 40px;
    text-align: center;
}

.ti-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.ti-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41e3a;
    margin: 12px auto 0;
    border-radius: 2px;
}

.ti-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards */
.ti-cards {
    padding: 20px 20px 80px;
}

.ti-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .ti-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.ti-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ti-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ti-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fef2f2;
    color: #c41e3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.ti-card-icon .material-symbols-outlined {
    font-size: 24px;
    color: inherit;
}

.ti-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.ti-card-links {
    flex: 1;
    margin-bottom: 20px;
}

.ti-card-link {
    display: block;
    color: #2563eb;
    font-size: 0.9375rem;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}
.ti-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1.5px solid #c41e3a;
    color: #c41e3a;
    background: transparent;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.ti-card-btn:hover {
    background: #c41e3a;
    color: #fff;
}
.blog-article{
    margin-top: 24px;
}
/* Article content (table, lists, headings) */
.blog-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.blog-article-content h2 {
    font-size: 1.6rem;
}

.blog-article-content h3 {
    font-size: 1.3rem;
}

.blog-article-content h4 {
    font-size: 1.1rem;
}

.blog-article-content p {
    margin-bottom: 16px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.blog-article-content ul li,
.blog-article-content ol li {
    margin-bottom: 6px;
}

.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.blog-article-content table th,
.blog-article-content table td {
    border: 1px solid #ddd;
    padding: 10px 14px;
    text-align: left;
}

.blog-article-content table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #1a1a1a;
}

.blog-article-content table tr:nth-child(even) {
    background: #fafafa;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.blog-article-content blockquote {
    border-left: 4px solid #f26522;
    padding-left: 20px;
    margin: 24px 0;
    color: #555;
    font-style: italic;
}

/* Blog layout reuse for list/detail */
.blog-page {
    padding-bottom: 60px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

.blog-sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1562c;
}

.blog-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-item {
    margin-bottom: 4px;
}

.blog-sidebar-link {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.blog-sidebar-link:hover,
.blog-sidebar-link.is-active {
    background: #fff5f2;
    color: #f1562c;
}

.blog-page-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.blog-empty {
    padding: 40px;
    text-align: center;
    color: #888;
    background: #f8f9fa;
    border-radius: 12px;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.blog-pagination-link {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.blog-pagination-link:hover {
    background: #f1562c;
    color: #fff;
    border-color: #f1562c;
}

.blog-pagination-current {
    font-size: 0.875rem;
    color: #666;
}
