/* [project]/app/news/styles.css [app-client] (css) */
.news-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.news-page__container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-page__heading {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.news-list {
  width: 100%;
}

.news-list__header {
  text-align: center;
  margin-bottom: 2rem;
}

.news-list__header-content {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.news-list__button-group {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.news-list__date {
  color: #666;
  font-size: 1.25rem;
  font-weight: 500;
}

.news-list__daily-summary-button {
  color: #06c;
  cursor: pointer;
  background: #fff;
  border: 2px solid #06c;
  border-radius: 8px;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.5rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 2px 4px #0066cc1a;
}

.news-list__daily-summary-button:hover {
  color: #fff;
  background: #06c;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #06c3;
}

.news-list__daily-summary-button:active {
  transform: translateY(0);
}

.news-list__daily-summary-button:focus {
  outline-offset: 2px;
  outline: 2px solid #06c;
}

.news-list__daily-summary-button svg {
  flex-shrink: 0;
}

.news-list__market-pulse-button {
  color: #06c;
  cursor: pointer;
  background: #fff;
  border: 2px solid #06c;
  border-radius: 8px;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.5rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 2px 4px #0066cc1a;
}

.news-list__market-pulse-button:hover:not(:disabled) {
  color: #fff;
  background: #06c;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #06c3;
}

.news-list__market-pulse-button:active:not(:disabled) {
  transform: translateY(0);
}

.news-list__market-pulse-button:focus {
  outline-offset: 2px;
  outline: 2px solid #06c;
}

.news-list__market-pulse-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.news-list__market-pulse-button svg {
  flex-shrink: 0;
}

.news-list__market-pulse-button svg.spinning {
  animation: 1s linear infinite spin;
}

.news-list__weekly-podcast-button {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border: none;
  position: relative;
}

.news-list__weekly-podcast-button:before {
  content: "";
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 10px;
  transition: opacity .2s;
  position: absolute;
  inset: -2px;
}

.news-list__weekly-podcast-button:hover:not(:disabled) {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #7c3aed59;
}

.news-list__weekly-podcast-button:hover:not(:disabled):before {
  opacity: .3;
}

.news-list__weekly-podcast-button:focus {
  outline-offset: 2px;
  outline: 2px solid #7c3aed;
}

.news-list__weekly-podcast-button span {
  transition: all .3s;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.news-list__daily-summary-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.news-list__grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
}

.news-list__empty {
  text-align: center;
  color: #666;
  padding: 4rem 2rem;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000001a;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px #00000026;
}

.news-card__link {
  color: inherit;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.news-card__image-wrapper {
  aspect-ratio: 443 / 100;
  background: #e9ecef;
  width: 100%;
  height: auto;
  min-height: 105px;
  position: relative;
  overflow: hidden;
}

.news-card__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.news-card:hover .news-card__image {
  transform: scale(1.05);
}

.news-card__content {
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.news-card__title {
  color: #1a1a1a;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.news-card__summary-wrapper {
  flex: 1;
  margin: 0 0 1rem;
  position: relative;
}

.news-card__listen-button {
  color: #fff;
  cursor: pointer;
  background: #06c;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s, transform .1s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 2px 4px #0000001a;
}

.news-card__summary {
  color: #555;
  flex: 1;
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.news-card__listen-button:hover {
  background: #0052a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #00000026;
}

.news-card__listen-button:active {
  transform: translateY(0);
}

.news-card__listen-button:focus {
  outline-offset: 2px;
  outline: 2px solid #06c;
}

.news-card__listen-button svg {
  flex-shrink: 0;
}

.news-card__meta {
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1rem;
  display: flex;
}

.news-card__source, .news-card__date {
  color: #888;
  margin: 0;
  font-size: .85rem;
}

.news-card__date:before {
  content: "•";
  color: #ccc;
  margin-right: .75rem;
}

.news-card__cta {
  color: #06c;
  margin-top: auto;
  font-size: .95rem;
  font-weight: 500;
}

.news-card:hover .news-card__cta {
  text-decoration: underline;
}

.news-card__footer {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  display: flex;
}

.news-card__audio-button {
  color: #fff;
  cursor: pointer;
  background: #06c;
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 2px 4px #0066cc26;
}

.news-card__audio-button:hover {
  background: #0052a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #0066cc40;
}

.news-card__audio-button:active {
  transform: translateY(0);
}

.news-card__audio-button:focus {
  outline-offset: 2px;
  outline: 2px solid #06c;
}

.news-card__audio-button svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.news-card__audio-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.news-article-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.news-article-page__container {
  max-width: 800px;
  margin: 0 auto;
}

.news-article {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000001a;
}

.news-article__back {
  color: #06c;
  padding: 1rem 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.news-article__back:hover {
  color: #0052a3;
  text-decoration: underline;
}

.news-article__header {
  margin-bottom: 2rem;
}

.news-article__hero {
  aspect-ratio: 443 / 100;
  background: #e9ecef;
  width: 100%;
  height: auto;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.news-article__hero-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.news-article__meta {
  padding: 2rem;
}

.news-article__title {
  color: #1a1a1a;
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-article__meta-info {
  color: #666;
  align-items: center;
  gap: 1.5rem;
  font-size: .95rem;
  display: flex;
}

.news-article__date {
  font-weight: 500;
}

.news-article__source {
  color: #888;
}

.news-article__source-wrapper {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.news-article__source-meta {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.news-article__tier-badge {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #10b981;
  border-radius: 4px;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.news-article__trust-score {
  color: #fbbf24;
  font-size: 1rem;
}

.news-article__image-source {
  color: #888;
  margin-left: .5rem;
  font-size: .85rem;
}

.news-article__content {
  padding: 0 2rem 2rem;
}

.news-article__summary-box {
  background: #f0f7ff;
  border-left: 4px solid #06c;
  border-radius: 4px;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.news-article__summary-box h2 {
  color: #1a1a1a;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.news-article__summary-box p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.news-article__briefo {
  margin: 2rem 0;
}

.briefo {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 2rem;
}

.briefo__header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.briefo__title {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.briefo__timestamp {
  color: #666;
  font-size: .875rem;
  font-weight: 400;
}

.briefo__summary {
  margin-bottom: 1.5rem;
}

.briefo__summary p {
  color: #333;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.briefo__takeaways {
  margin-bottom: 1.5rem;
}

.briefo__takeaways-title {
  color: #1a1a1a;
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.briefo__takeaways-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.briefo__takeaway-item {
  color: #555;
  margin-bottom: .75rem;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.briefo__takeaway-item:before {
  content: "→";
  color: #06c;
  font-weight: 600;
  position: absolute;
  left: 0;
}

.briefo__impact {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  padding: 1.25rem;
}

.briefo__impact-title {
  color: #1a1a1a;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.briefo__impact-text {
  color: #555;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.news-article__markdown {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}

.news-article__markdown h1, .news-article__markdown h2, .news-article__markdown h3 {
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.news-article__markdown h1 {
  font-size: 2rem;
}

.news-article__markdown h2 {
  font-size: 1.5rem;
}

.news-article__markdown h3 {
  font-size: 1.25rem;
}

.news-article__markdown p {
  margin-bottom: 1.5rem;
}

.news-article__markdown a {
  color: #06c;
  text-decoration: underline;
}

.news-article__markdown a:hover {
  color: #0052a3;
}

.news-article__audio-placeholder {
  text-align: center;
  padding: 2rem;
}

.news-article__audio-button {
  color: #fff;
  cursor: pointer;
  background: #06c;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1.5rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 2px 4px #0066cc26;
}

.news-article__audio-button:hover {
  background: #0052a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #0066cc40;
}

.news-article__audio-button:active {
  transform: translateY(0);
}

.news-article__audio-button:focus {
  outline-offset: 2px;
  outline: 2px solid #06c;
}

.news-article__audio-button svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.news-article__audio-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.news-not-found {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.news-not-found h1 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.news-not-found p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.news-not-found__link {
  color: #06c;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.news-not-found__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .news-page__heading {
    font-size: 2rem;
  }

  .news-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-article__title {
    font-size: 1.75rem;
  }

  .news-article__hero {
    aspect-ratio: 443 / 100;
    min-height: 150px;
  }

  .news-card__image-wrapper {
    aspect-ratio: 443 / 100;
    min-height: 100px;
  }

  .news-article__meta, .news-article__content {
    padding: 1.5rem;
  }

  .news-article__meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .briefo {
    padding: 1.5rem;
  }

  .briefo__header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .briefo__title {
    font-size: 1.25rem;
  }

  .news-card__listen-button {
    padding: .625rem 1.25rem;
    font-size: .9rem;
  }

  .news-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .news-card__date:before {
    display: none;
  }

  .news-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .news-card__audio-button {
    justify-content: center;
    width: 100%;
    padding: .75rem 1rem;
  }

  .news-list__header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .news-list__button-group {
    flex-direction: column;
    gap: .75rem;
    width: 100%;
  }

  .news-list__daily-summary-button, .news-list__market-pulse-button {
    justify-content: center;
    width: 100%;
    padding: .625rem 1.25rem;
    font-size: .9rem;
  }
}

/*# sourceMappingURL=app_news_styles_46e813fa.css.map*/