.geo-intro-section {
  margin-top: 30px;
}

.geo-pharagraph {
  font-size: 1.5rem;
}

.geo-content-wrapper {
  display: flex;
  align-items: center;
}

.geo-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  width: 100%;
}

.geo-magazine-item {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: #f7f9fa;
  font-weight: 700;
}

.geo-magazine-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.magazine-link {
  cursor: pointer;
}

.magazine-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.magazine-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.magazine-title {
  font-size: 1.8rem;
  padding: 20px;
  line-height: 1.5;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .geo-pharagraph {
    font-size: 1.4rem;
  }

  .geo-content-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 30px;
  }

  .geo-magazine-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .geo-magazine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
