@charset "UTF-8";
/* CSS Document */

/* Container setup */
.media-guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Base cell styling (Mobile first: 1 column stacked) */
.media-guide-cell {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border: 1px solid #efefef;
  text-decoration: none !important;
  color: #333333 !important;
  box-sizing: border-box;
  background-color: #ffffff;
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Image containment */
.image-wrapper {
  width: 100%;
  max-width: 200px; /* Limits large stretching on mobile */
  margin-bottom: 12px;
}

.image-wrapper img {
  width: auto;
  height: 250px;
  display: block;
}

/* Text styling */
.pdf-title {
  color: #333333 !important;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}

/* Dynamic Roll-over / Hover Styling */
.media-guide-cell:hover {
  border-color: #a0a0a0;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.media-guide-cell:hover .pdf-title {
  color: #cc0000 !important; /* Subtle accent shift for text on hover */
	text-decoration: none;
}

/* Responsive Breakpoints */
@media (min-width: 480px) {
  .media-guide-cell {
    flex: 1 1 calc(50% - 16px); /* 2 columns on small tablets */
  }
}

@media (min-width: 768px) {
  .media-guide-cell {
    flex: 1 1 calc(33.333% - 16px); /* 3 columns on medium screens */
  }
}

@media (min-width: 1024px) {
  .media-guide-cell {
    flex: 1 1 calc(25% - 16px); /* 4 columns on large screens */
  }
}

div.media-guide-grid a.media-guide-cell span.media-guide-title {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333333; 
}
div.media-guide-grid a.media-guide-cell:hover span.media-guide-title {
  color: #0066cc; 
}