			main {
				width: 960px;
			}
			ul {
				display: flex;
				flex-wrap: wrap;
				gap: 2rem;
				list-style-type: none;
				margin: 0;
				padding: 0;
			}
			ul li * {
				text-decoration: none;
				transition: 0.2s ease;
			}
			ul li:first-child {
				width: 100%;
				margin-bottom: 1rem;
				text-align: center;
			}
			ul li:first-child img {
				width: 100%;
			}
			ul li:first-child .title {
				font-size: 2.369rem;
			}
			ul li img {
				margin-bottom: 0.5rem;
				border-radius: 12px;
			}
			ul li a {
				display: block;
			}
			.title {
				margin: 0;
				color: rgb(var(--black));
				line-height: 1;
			}
			.date {
				margin: 0;
				color: rgb(var(--gray));
			}
			ul li a:hover h4,
			ul li a:hover .date {
				color: rgb(var(--accent));
			}
			ul a:hover img {
				box-shadow: var(--box-shadow);
			}
			@media (max-width: 720px) {
				ul {
					gap: 0.5em;
				}
				ul li {
					width: 100%;
					text-align: center;
				}
				ul li:first-child {
					margin-bottom: 0;
				}
				ul li:first-child .title {
					font-size: 1.563em;
				}
			}
			.pagination {
				display: flex;
				justify-content: center;
				margin-top: 1rem;
			}
			.pagination a {
				padding: 0.5rem 1rem;
				border: 1px solid rgb(var(--gray));
				border-radius: 4px;
				margin: 0 0.25rem;
				text-decoration: none;
				color: rgb(var(--gray));
				transition: 0.2s ease;
			}
			.pagination a.active {
				background-color: var(--accent);
				color: white;
			}
			.pagination a:hover {
				background-color: var(--accent);
				color: white;
			}
			.pagination a:first-child {
				margin-left: 0;
			}
			.pagination a:last-child {
				margin-right: 0;
			}


  .clickable {
    cursor: pointer;
  }
  .card {
    position: relative;
    transition: all 0.3s ease;
  }
  .card.expanded .expanded-content {
    display: block;
  }
  .card.expanded .item_image {
    display: none;
  }
  .enlarged_image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain; /* Fit the image within the container */
    cursor: pointer;
  }