/* Custom styles for main page - สื่อและกิจกรรมที่น่าสนใจ */

/* หัวข้อ "สื่อและกิจกรรมที่น่าสนใจ" */
.knowledge-section-title {
    font-size: calc(1.335rem + 1.02vw);
    line-height: 1.2;
    font-weight: 600;
    color: #1e2228;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    pointer-events: none;
    padding: 0 2.5rem;
}

/* สำหรับหน้าจอมือถือ - ปรับขนาดตัวอักษรให้เล็กลง */
@media (max-width: 767px) {
    .knowledge-section-title {
        font-size: 1.5rem !important;
        padding: 0 1rem;
    }
    
    /* ปรับขนาดตัวอักษรในการ์ดความรู้ */
    .knowledge-card h4 {
        font-size: 0.9rem !important;
    }
    
    .knowledge-card p {
        font-size: 0.8rem !important;
    }
    
    /* ปรับขนาดรูปภาพสำหรับมือถือ */
    .knowledge-image {
        width: 120px !important;
        height: 120px !important;
    }
}

/* สำหรับแท็บเล็ต */
@media (min-width: 768px) and (max-width: 1023px) {
    .knowledge-section-title {
        font-size: 1.8rem !important;
        padding: 0 2rem;
    }
}

/* ปรับปรุงการแสดงผลของการ์ดความรู้ */
.knowledge-card {
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07);
    border-radius: 0.4rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 2rem rgba(30, 34, 40, 0.12);
}

/* ปรับปรุงรูปภาพความรู้ */
.knowledge-image {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 3px solid #f0f0f0;
}

.knowledge-image:hover {
    transform: scale(1.05);
    border-color: #e668b3;
}

/* ปรับปรุงข้อความในการ์ด */
.knowledge-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e2228;
    transition: color 0.3s ease;
}

.knowledge-card h4:hover {
    color: #e668b3;
}

.knowledge-card p {
    margin-bottom: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* ปรับปรุงปุ่ม "แสดงทั้งหมด" */
.knowledge-view-all {
    font-size: 0.85rem;
    color: #605dba;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.knowledge-view-all:hover {
    color: #4a46b8;
    text-decoration: underline;
}

/* สำหรับหน้าจอเล็ก (มือถือ) - ปรับขนาดปุ่ม */
@media (max-width: 767px) {
    .knowledge-view-all {
        font-size: 0.75rem !important;
    }
}