/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver (the default phpBB 3.3.x style)
	Based on style:
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
    --------------------------------------------------------------
*/

@import url("normalize.css?hash=48eb3f89");
@import url("base.css?hash=7c5543be");
@import url("utilities.css?hash=d8f72c42");
@import url("common.css?hash=843d5d5f");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=d0e24377");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=9016b55c");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=f873d39c");
@import url("responsive.css?hash=c9d32cba");

.pc-banner {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  }

  /* DESKTOP BANNER */
  .pc-banner-desktop {
    display: flex;
    align-items: center;
    width: 100%;
    height: 150px;
    border-radius: 10px;
    background-image: url('../../../images/puzzle-calendar-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .pc-banner-desktop .banner-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .pc-banner-desktop .banner-text {
    display: flex;
    flex-direction: column;
  }

  .pc-banner-desktop .banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: rgba(51, 51, 51);
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  .pc-banner-desktop .banner-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(51, 51, 51, 0.8);
    margin-top: 4px;
    letter-spacing: 0.04em;
  }

  .pc-banner-desktop .banner-cta {
    background: #c8a96e;
    color: #1a0f00;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
  }

  .pc-banner:hover {
    text-decoration: none !important;
    color: rgba(51, 51, 51, 0.8) !important;
  }

  .pc-banner:hover .banner-cta {
    background: #e0c080;
  }

  /* MOBILE BANNER */
  .pc-banner-mobile {
    display: none;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background-image: url('../../../images/puzzle-calendar-bg.webp');
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
  }

  .pc-banner-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  }

  .pc-banner-mobile .banner-content {
    position: absolute;
    z-index: 2;
    bottom: 32px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-top: auto;
  }

  .pc-banner-mobile .banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .pc-banner-mobile .banner-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.03em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }

  .pc-banner-mobile .banner-cta {
    margin-top: 6px;
    background: #c8a96e;
    color: #1a0f00;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }

  /* MOBILE SWITCH */
  @media (max-width: 768px) {
    .pc-banner-desktop {
      display: none;
    }

    .pc-banner-mobile {
      display: block;
    }
  }
