.dtb-tabs-wrapper {
  font-family: "Times New Roman", serif;
  padding-bottom: 10px;
}
.dtb-post-title {
  font-family: "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.2;
}

/* =========================
   TAB NAV
========================= */
.dtb-tab-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #ddd;
}

.dtb-tab-buttons {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.dtb-tab-buttons::-webkit-scrollbar { display: none; }

.dtb-tab-btn {
  background: none !important;
  color: #000 !important;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;

  white-space: nowrap;
}

.dtb-tab-btn:hover {
  background: none !important;
  color: #000 !important;
}
.dtb-tab-btn.active {
  color: #BD1417 !important;
  background: none !important;
  border-bottom: 3px solid #BD1417 !important;
}

.dtb-tab-arrow {
  display: none;
  background: none !important;
  color: #BD1417 !important;
  border: none;
  font-size: 26px;
  cursor: pointer;
  padding: 0;
}
.dtb-tab-btn:hover {
  background: none !important;
  color: #000 !important;
}
/* =========================
   CONTENT
========================= */
.dtb-tab-content { display: none; }
.dtb-tab-content.active { display: block; }

/* =========================
   GRID
========================= */
.dtb-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 6px;
  margin-top: 25px;
}

/* =========================
   CELL STYLE
========================= */
.dtb-cell {
  text-decoration: none;
  padding: 6px 4px;
  color: #000;
}

.dtb-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dtb-sub {
  display: block;
  font-size: 15px;
  color: #BD1417;
}

/* =========================
   READ MORE
========================= */
.dtb-read-more {
  display: none;
  text-align: right;
  font-size: 17px;
  margin-top: 10px;
  font-weight: bold;
  color: #BD1417;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1200px) {
  .dtb-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width:768px) {
  .dtb-grid { grid-template-columns: repeat(2,1fr); }
  .dtb-tab-arrow { display: block; }
  
}

@media (max-width:480px) {

  .dtb-grid { grid-template-columns: repeat(2,1fr); }

  .dtb-grid[data-expanded="false"] .dtb-cell:nth-child(n+7) {
    display: none;
  }
.dtb-title {
  font-size: 16px;
}
.dtb-sub {
  font-size: 14px;
  color: #BD1417;
}

  .dtb-read-more {
    display: block;
  }
  .dtb-post-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 7px 0;
}
}
@media (min-width: 769px) {
  .dtb-read-more {
    display: none !important;
  }
}
