/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Custom CSS for News Portal */

/* BBC Style Hero Section CSS */
.hero-bbc-section {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.hero-bbc-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.hero-bbc-main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.hero-bbc-main .bbc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  color: #fff;
}

.hero-bbc-main .bbc-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.hero-bbc-main .bbc-date {
  font-size: 14px;
  color: #ddd;
}

.hero-bbc-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-bbc-side-item {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.hero-bbc-side-item img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.hero-bbc-side-item .side-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bbc-side-item .side-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.hero-bbc-side-item .side-date {
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .hero-bbc-section {
    grid-template-columns: 1fr;
  }
  .hero-bbc-main .bbc-title {
    font-size: 20px;
  }
  .hero-bbc-side-item {
    flex-direction: column;
  }
  .hero-bbc-side-item img {
    width: 100%;
    height: auto;
  }
}


/* Category Block */
.news-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.category-block {
    padding: 20px 0;
    border-top: 1px solid #ddd;
}
.category-title {
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 4px solid #e60023;
    padding-left: 10px;
    color: #222;
}
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Post Card */
.category-post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.category-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.post-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.post-card-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.post-card-content {
    padding: 10px 15px;
}
.post-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111;
}
.post-card-date {
    font-size: 14px;
    color: #777;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hero-news-link {
        flex-direction: column;
    }
    .hero-news-image img {
        max-width: 100%;
    }
    .category-title {
        font-size: 20px;
    }
    .post-card-title {
        font-size: 16px;
    }
}
