
#overview-15 {
  overflow: hidden;
  background-color: var(--section-bg-color, #ffffff);
}
#overview-15 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#overview-15 .section-intro {
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#overview-15 .section-intro .section-heading {
  margin-bottom: 0.5rem;
}
#overview-15 .section-intro .lead {
  color: #6c757d;
  margin-bottom: 0;
}
#overview-15 .content-block-wrapper {
  padding: 15px;
}
#overview-15 .tilted-content-block {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: left;
}
#overview-15 .row > div:nth-child(odd) .tilted-content-block {
  transform: rotate(-1.5deg);
}
#overview-15 .row > div:nth-child(even) .tilted-content-block {
  transform: rotate(1.5deg);
}
#overview-15 .content-block-wrapper:hover .tilted-content-block {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}
#overview-15 .tilted-content-block h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
}
#overview-15 .tilted-content-block h5 i {
  margin-right: 0.75rem;
  opacity: 0.9;
}
#overview-15 .tilted-content-block p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}
#overview-15 .cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}



#content-block-27 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#content-block-27 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#content-block-27 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#content-block-27 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#content-block-27 .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
#content-block-27 .info-item-icon {
  font-size: 1.75rem;
  color: var(--bs-primary, #0d6efd);
  margin-right: 1rem;
  min-width: 1.5em;
  text-align: center;
  margin-top: 0.1em;
}
#content-block-27 .info-item-content {
  flex-grow: 1;
}
#content-block-27 .info-item-content h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-27 .info-item-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #content-block-27 .info-item {
    margin-bottom: 0;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #fff;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Grid & Cards === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 576px) {
  .post-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 992px) {
  .post-grid { grid-template-columns: repeat(4,1fr); }
}
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card img {
  width: 100%;
  display: block;
  height: auto;
}

/* === Overlay Icon === */
.post-card .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.3s;
}
.post-card:hover .overlay-icon {
  opacity: 1;
}

/* === Modal Content === */
.modal-content {
  border-radius: 0.5rem;
}
.modal-body img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.modal-body h5 {
  margin-bottom: 0.75rem;
}
.modal-body p {
  color: #555;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}



