.article div {
  font-size: 1.5rem;
  font-weight: 300; }

h3 {
  color: black;
  font-size: 3rem;
  margin-bottom: 1rem; }

strong {
  font-size: 1.5rem;
  font-weight: 500; }

.attachment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 2rem 0; }
  .attachment-gallery img {
    object-fit: cover; }

.news-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1rem; }
@container (inline-size < 640px) {
  .news-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
  .news-wrapper .news {
    display: grid;
    grid-template-columns: 186px 1fr;
    border-radius: 20px;
    overflow: hidden;
    grid-template-rows: 150px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    text-decoration: none; }
@container (inline-size < 640px) {
  .news-wrapper .news {
    grid-template-columns: 120px 1fr;
    grid-template-rows: 120px; } }
    .news-wrapper .news .thumb {
      overflow: hidden;
      border-radius: 3px; }
      .news-wrapper .news .thumb img {
        transition: all 0.5s ease;
        object-fit: cover; }
    .news-wrapper .news .textbox {
      display: grid;
      grid-template-rows: 1fr 20px;
      background-color: whitesmoke;
      padding: 1rem; }
@container (inline-size < 640px) {
  .news-wrapper .news .textbox {
    padding: 0.5rem;
    font-size: 1.0rem; } }
      .news-wrapper .news .textbox .text {
        color: #111;
        display: grid;
        align-content: center;
        font-weight: 400; }
@container (inline-size < 640px) {
  .news-wrapper .news .textbox .text {
    font-size: 1.0rem; } }
      .news-wrapper .news .textbox .date {
        font-size: 12px;
        font-weight: 400;
        color: #999;
        text-align: right; }
@container (inline-size < 640px) {
  .news-wrapper .news .textbox .date {
    padding: 0.5rem;
    font-size: .875rem; } }
    .news-wrapper .news:hover .thumb img {
      transform: scale(1.05) translateY(-5px);
      filter: grayscale(0); }

.news-pagination {
  display: grid;
  text-align: center;
  padding-top: 2rem; }
  .news-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap; }
    .news-pagination .pagination a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.25rem;
      height: 2.25rem;
      padding: 0 0.5rem;
      border-radius: 6px;
      border: 1px solid #ddd;
      background-color: #fff;
      color: #333;
      text-decoration: none;
      font-size: 0.95rem;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
      .news-pagination .pagination a:hover:not(.empty):not(.active) {
        background-color: #ff6c0e;
        border-color: #ff6c0e;
        color: #fff; }
      .news-pagination .pagination a.active {
        background-color: #ff6c0e;
        border-color: #ff6c0e;
        color: #fff;
        font-weight: 600;
        pointer-events: none; }
      .news-pagination .pagination a.arrows {
        font-size: 1.2rem;
        font-weight: 300; }
      .news-pagination .pagination a.empty {
        color: #ccc;
        border-color: #eee;
        pointer-events: none;
        cursor: default; }

/*# sourceMappingURL=news.css.map */
