.news-section {
  background: #fff;
  color: #000;
}

.news-thumb {
  width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink:0;
}

.news-title a {
  font-size: 17px;
  font-weight: 700;
  color: #2d3194;
}

.news-title a:hover {
  color: #0066cc;
}

.news-desc {
    font-size: 14px;
    color: #555;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* số dòng muốn hiển thị */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}

/* ===== SIDEBAR ===== */
.sidebar-box {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  background: #f9f9f9;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3194;
  border-bottom: 2px solid #2d3194;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.sidebar-list {
  list-style: inside;
  padding: 0 10px;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 8px;
}

.sidebar-list a {
  text-decoration: none;
  color: #2d3194;
  font-size: 15px;
}

.sidebar-list a:hover {
  text-decoration: underline;
}

/* ===== TIN MỚI ===== */
.recent-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 3px;
}

.recent-post .small {
    color: #333;
    line-height: 1.3;
    text-align: justify;
}
.news-detail {
  background: #fff;
}

/* Ô ngày tháng */
.date-box {
  width: 70px;
  height: 70px;
  border: 2px solid #2d3194;
  border-radius: 4px;
  color: #2d3194;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}

.date-box .day {
  font-size: 26px;
  line-height: 1;
  margin-top: 10px;
}

.date-box .month {
  font-size: 12px;
  color: #2d3194;
  margin-top: 2px;
}

/* Tiêu đề */
.detail-title {
  font-size: 22px;
  line-height: 1.4;
}

/* Nội dung bài */
.detail-content p, 
.detail-content ul {
  font-size: 15px;
  color: #333;
}

.detail-content ul {
  padding-left: 20px;
}
.recruitment-section {
  background-color: #fff;
}

.section-title {
  color: #2d3194;
}

.recruitment-table thead {
  background-color: #2d3194;
}

.recruitment-table th {
  font-weight: 700;
  font-size: 15px;
}

.recruitment-table td {
  font-size: 14px;
  vertical-align: middle;
}

.btn-apply {
  background-color: #ccc;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  padding: 6px 14px;
}

.btn-apply:hover {
  background-color: #2d3194;
  color: #fff;
}

.page-link {
  color: #2d3194;
  border: 1px solid #2d3194;
}

.page-item.active .page-link {
  background-color: #2d3194;
  color: #fff;
  border-color: #2d3194;
}

.page-link:hover {
  background-color: #2d3194;
  color: #fff;
}
.recruit-detail {
  background-color: #fff;
}

.text-primary {
  color: #2d3194 !important;
}

/* Job Info */
.job-info p {
  margin-bottom: 6px;
  font-size: 15px;
}

/* Danh sách mô tả */
.job-desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}
.job-desc li {
  margin-bottom: 4px;
}
.contact-section {
  background-color: #fff;
}

.section-title {
  font-size: 26px;
}

.contact-section p {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}

.contact-form .form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form .form-control:focus {
  border-color: #2d3194;
  box-shadow: 0 0 0 0.2rem rgba(0,60,125,0.2);
}

.btn-primary {
  background-color: #2d3194;
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #0051a8;
}

.recaptcha-placeholder {
  background: #f8f8f8;
  color: #777;
  font-size: 14px;
  text-align: center;
}
.recent-post {
    display: flex;
    align-items: center;
    gap: 10px;
}
.recent-thumb {
    width: 100px; /* chiều ngang cố định */
    height: 70px; /* chiều cao cố định */
    object-fit: cover; /* giúp ảnh luôn đẹp, không bóp méo */
    border-radius: 4px; /* bo nhẹ góc, hoặc bỏ nếu không muốn */
    flex-shrink: 0; /* giữ ảnh không bị ép nhỏ lại */
}
a{
    text-decoration:none;
}
.pagination {
    display: flex;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content:center;
}

    .pagination a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        border: 1px solid #dcdcdc;
        border-radius: 6px;
        background: #fff;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
        transition: 0.2s;
    }

        .pagination a:hover {
            background: #0056d6;
            color: #fff;
            border-color: #0056d6;
        }

        .pagination a.active {
            background: #0056d6;
            color: #fff !important;
            border-color: #0056d6;
            font-weight: 600;
        }

        .pagination a[disabled] {
            pointer-events: none;
            opacity: 0.4;
        }
