/* Coffee Break Archive Layout */

.coffee-break-archive {
  background-color: #f9f9f9;
  padding: 40px 0 60px 0;
}

.coffee-break-archive h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #131313;
}

.coffee-break-archive > .container > .row:first-child p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* Coffee Break Card */

.coffee-break-card {
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coffee-break-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.coffee-break-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.coffee-break-card .card-link:hover {
  text-decoration: none;
}

.coffee-break-card .card-image {
  width: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
}

.coffee-break-card .card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.coffee-break-card:hover .card-image img {
  transform: scale(1.03);
}

.coffee-break-card .card-content {
  padding: 30px 35px 35px 35px;
}

.coffee-break-card .card-title {
  font-size: 28px;
  font-weight: bold;
  color: #131313;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 0;
}

.coffee-break-card .card-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coffee-break-card .card-author {
  font-weight: 600;
  color: #666;
}

.coffee-break-card .card-separator {
  margin: 0 8px;
}

.coffee-break-card .card-date {
  color: #999;
}

.coffee-break-card .card-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.coffee-break-card .card-read-more {
  font-size: 14px;
  font-weight: 600;
  color: #8c6955;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.coffee-break-card:hover .card-read-more {
  color: #6b5142;
}

/* No Posts Message */

.coffee-break-archive .no-posts {
  background-color: #fff;
  padding: 60px 40px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.coffee-break-archive .no-posts p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

/* Responsive Design */

@media screen and (max-width: 767px) {
  .coffee-break-archive h1 {
    font-size: 32px;
  }

  .coffee-break-archive > .container > .row:first-child p {
    font-size: 16px;
  }

  .coffee-break-card .card-content {
    padding: 25px 20px 25px 20px;
  }

  .coffee-break-card .card-title {
    font-size: 24px;
  }

  .coffee-break-card .card-excerpt {
    font-size: 15px;
  }
}
