/*
Theme Name: Kadence Child
Description: Child theme for Kadence
Author: Micah Fox
Template: kadence
Version: 1.0.1
*/

/*

* Weekly Report page layout
  */

.weekly-report-page {
  width: 100%;
  box-sizing: border-box;
}

.weekly-report-page > .weekly-report {
  width: calc(100% - 48px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 60px;
  box-sizing: border-box;
}

.weekly-report__header {
  margin-bottom: 2rem;
}

.weekly-report__number {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weekly-report__title {
  margin-top: 0;
  margin-bottom: 1rem;
}

.weekly-report__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

.weekly-report__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.weekly-report__meta-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.weekly-report__featured-summary {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
}

.weekly-report__disclaimer {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid currentColor;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  line-height: 1.6;
}

.weekly-report__disclaimer p:last-child {
  margin-bottom: 0;
}

.weekly-report__introduction,
.weekly-report__stocks,
.weekly-report__closing-thoughts {
  margin-top: 3rem;
}

.weekly-report__section-header {
  margin-bottom: 1.25rem;
}

.weekly-report__section-header h2,
.weekly-report__introduction h2,
.weekly-report__closing-thoughts h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.weekly-report__stock-list {
  display: grid;
  gap: 2rem;
}

.weekly-report-stock {
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  box-sizing: border-box;
}

.weekly-report-stock__header {
  margin-bottom: 1.25rem;
}

.weekly-report-stock__number {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weekly-report-stock__title {
  margin: 0;
}

.weekly-report-stock__ticker {
  font-size: 0.85em;
  font-weight: 500;
}

.weekly-report-stock__analysis > :first-child,
.weekly-report__content > :first-child,
.weekly-report__closing-content > :first-child {
  margin-top: 0;
}

.weekly-report-stock__analysis > :last-child,
.weekly-report__content > :last-child,
.weekly-report__closing-content > :last-child {
  margin-bottom: 0;
}

.weekly-report__footer {
  margin-top: 3rem;
}

.weekly-report__disclaimer--closing h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

@media screen and (max-width: 767px) {
  .weekly-report-page > .weekly-report {
    width: calc(100% - 32px);
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .weekly-report__meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .weekly-report-stock {
    padding: 1.25rem;
  }
}
