/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Press Grid */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Press Card */
.press-card {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  border: 1px solid #e5e7eb;
}

.press-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.press-card-content {
  display: flex;
  width: 100%;
  padding: 1.25rem;
}

.press-logo {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.press-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-details {
  flex: 1;
  position: relative;
}

.press-meta {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.press-meta-left {
  display: flex;
  align-items: center;
}

.press-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #495057;
  background-color: #e9ecef;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.press-date {
  padding: 0.5rem;
    font-size: 0.875rem;
  color: #6b7280;
}

.press-type {
  color: #344559;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem;
}

.press-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 1.4;
  color: #111827;
}