/* ==========================================================================
   PORTAL HOME TEMPLATE
   ========================================================================== */

.ikhs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ikhs-hero {
    margin-bottom: 40px;
}

.ikhs-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.ikhs-hero-post {
    display: flex;
    flex-direction: column;
}

.ikhs-hero-link {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.ikhs-hero-link img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ikhs-hero-link:hover img {
    transform: scale(1.05);
}

.ikhs-hero-content {
    padding: 0;
}

.ikhs-cat-tag {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.ikhs-hero-title {
    font-family: 'Georgia', serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 15px;
    font-weight: 700;
}

.ikhs-hero-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.ikhs-hero-title a:hover {
    color: #0056b3;
}

.ikhs-hero-excerpt {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 15px;
}

.ikhs-meta {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: #666;
}

.ikhs-meta a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.ikhs-meta a:hover {
    text-decoration: underline;
}

/* Hero Sidebar */
.ikhs-hero-sidebar {
    background: #f8f8f8;
    padding: 20px;
}

.ikhs-sidebar-title {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.ikhs-sidebar-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.ikhs-sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ikhs-sidebar-thumb {
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.ikhs-sidebar-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ikhs-sidebar-thumb:hover img {
    transform: scale(1.05);
}

.ikhs-sidebar-content {
    flex: 1;
}

.ikhs-sidebar-post-title {
    font-family: 'Georgia', serif;
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 5px;
    font-weight: 700;
}

.ikhs-sidebar-post-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.ikhs-sidebar-post-title a:hover {
    color: #0056b3;
}

.ikhs-meta-small {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: #999;
}

/* Section Titles */
.ikhs-section-title {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #111;
}

/* General Sections */
.ikhs-news-grid,
.ikhs-featured,
.ikhs-category-section,
.ikhs-list-section,
.ikhs-final-section {
    margin-bottom: 50px;
}

/* 4 Column Grid */
.ikhs-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* 3 Column Grid */
.ikhs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card Styles */
.ikhs-card {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.ikhs-card-thumb {
    display: block;
    overflow: hidden;
    margin-bottom: 12px;
}

.ikhs-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ikhs-card-thumb:hover img {
    transform: scale(1.05);
}

.ikhs-card-content {
    flex: 1;
}

.ikhs-cat-small {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.ikhs-card-title {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 10px;
    font-weight: 700;
}

.ikhs-card-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.ikhs-card-title a:hover {
    color: #0056b3;
}

/* Featured Section */
.ikhs-ikhs-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.ikhs-large-card {
    display: flex;
    flex-direction: column;
}

.ikhs-large-card a {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.ikhs-large-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ikhs-large-card a:hover img {
    transform: scale(1.05);
}

.ikhs-large-title {
    font-family: 'Georgia', serif;
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 12px;
    font-weight: 700;
}

.ikhs-large-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.ikhs-large-title a:hover {
    color: #0056b3;
}

.ikhs-large-content p {
    font-family: 'Georgia', serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Featured Side */
.ikhs-ikhs-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ikhs-small-card {
    display: flex;
    gap: 12px;
}

.ikhs-small-thumb {
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.ikhs-small-thumb img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ikhs-small-thumb:hover img {
    transform: scale(1.05);
}

.ikhs-small-content {
    flex: 1;
}

.ikhs-small-title {
    font-family: 'Georgia', serif;
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 8px;
    font-weight: 700;
}

.ikhs-small-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.ikhs-small-title a:hover {
    color: #0056b3;
}

/* List Section */
.ikhs-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ikhs-list-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.ikhs-list-thumb {
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.ikhs-list-thumb img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ikhs-list-thumb:hover img {
    transform: scale(1.05);
}

.ikhs-list-content {
    flex: 1;
}

.ikhs-list-title {
    font-family: 'Georgia', serif;
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 10px;
    font-weight: 700;
}

.ikhs-list-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.ikhs-list-title a:hover {
    color: #0056b3;
}

/* Responsive */
@media (max-width: 1024px) {
    .ikhs-hero-grid {
        grid-template-columns: 1fr;
    }

    .ikhs-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ikhs-ikhs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .ikhs-grid-4,
    .ikhs-grid-3,
    .ikhs-list-grid {
        grid-template-columns: 1fr;
    }

    .ikhs-hero-link img {
        height: 250px;
    }

    .ikhs-hero-title {
        font-size: 24px;
    }
}