@charset "UTF-8";
/* stylelint-disable no-descending-specificity */
.c-blog-card {
  display: flex;
  gap: 28px;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.2s;
}
.c-blog-card:hover {
  opacity: 0.8;
}
@media (width < 768px) {
  .c-blog-card {
    flex-direction: column;
    gap: 12px;
  }
}
.c-blog-card__thumbnail-wrap {
  flex-shrink: 0;
  width: 258px;
  max-width: calc(50% - 14px);
  aspect-ratio: 258/145;
  height: auto;
  overflow: hidden;
  background-color: #d9d9d9;
  border-radius: 8px;
}
@media (width < 768px) {
  .c-blog-card__thumbnail-wrap {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 258/145;
  }
}
.c-blog-card__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.c-blog-card__thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border-radius: 8px;
}
.c-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}
.c-blog-card__label {
  align-self: flex-start;
  padding: 5px 10px;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  background-color: #000b1c;
  border-radius: 8px;
}
.c-blog-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-blog-card__author {
  color: #000;
  font-weight: 800;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  line-height: 1.45;
}
.c-blog-card__tags {
  display: flex;
  align-items: center;
}
.c-blog-card__tag {
  color: #000;
  font-weight: 500;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}
.c-blog-card__tag:not(:last-child)::after {
  margin: 0 16px;
  color: #000;
  font-weight: 300;
  content: "|";
}

/* stylelint-disable no-descending-specificity */
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.event-card__eyecatch-link {
  display: block;
  overflow: hidden;
  background-color: black;
  border-radius: 8px;
  aspect-ratio: 16/9;
}
.event-card__eyecatch {
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: 4px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.event-card__eyecatch-link:hover .event-card__eyecatch {
  width: 100%;
  height: 100%;
  margin: 0;
}
.event-card__pickup {
  display: none;
}
.event-card__deadline-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  background: #4fb5ee;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.event-card__deadline-badge--expired {
  background: #999;
}
.event-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.event-card__category-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  background-color: #ffd42c;
  border-radius: 6px;
}
.event-card__tags {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.event-card__tag {
  display: inline;
}
.event-card__tag:not(:last-child)::after {
  margin: 0 8px;
  content: "|";
}
.event-card__date {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
}
.event-card--secondary {
  flex-direction: row;
  gap: 16px;
}
.event-card--secondary .event-card__eyecatch-link {
  flex-shrink: 0;
  width: 360px;
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--secondary .event-card__eyecatch-link {
    width: 260px;
  }
}
@media (width < 768px) {
  .event-card--secondary .event-card__eyecatch-link {
    width: 200px;
  }
}
.event-card--mv {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--mv {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (width < 768px) {
  .event-card--mv {
    flex-direction: column;
    align-items: flex-start;
  }
}
.event-card--mv .event-card__eyecatch {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 1px black solid;
}
.event-card--mv .event-card__eyecatch-link {
  flex: 2;
}
@media (width < 768px) {
  .event-card--mv .event-card__eyecatch-link {
    flex: auto;
    width: 100%;
  }
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--mv .event-card__eyecatch-link {
    flex: auto;
    width: 100%;
  }
}
.event-card--mv .event-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding-left: 10px;
}
@media (width < 1280px) and (width >= 768px) {
  .event-card--mv .event-card__content {
    width: 100%;
  }
}
@media (width < 768px) {
  .event-card--mv .event-card__content {
    flex: auto;
    gap: 8px;
    width: 100%;
    padding-left: 0;
  }
}
.event-card--mv .event-card__pickup {
  display: block;
  color: transparent;
  font-weight: 800;
  font-size: 16px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 0.6px #000;
  text-stroke: 0.6px #000;
}
@media (width < 768px) {
  .event-card--mv .event-card__pickup {
    font-size: 12px;
  }
}
.event-card--mv .event-card__mv-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
@media (width < 768px) {
  .event-card--mv .event-card__mv-header {
    gap: 4px;
    margin-bottom: 16px;
  }
}
.event-card--mv .event-card__mv-subtitle {
  color: #000;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media (width < 768px) {
  .event-card--mv .event-card__mv-subtitle {
    font-size: 14px;
  }
}
.event-card--mv .event-card__mv-title {
  color: transparent;
  font-weight: 800;
  font-size: 66px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 1.5px #000;
}
@media (width < 768px) {
  .event-card--mv .event-card__mv-title {
    font-size: 40px;
    -webkit-text-stroke: 1px #000;
  }
}
.event-card--mv .event-card__category-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 16px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  background-color: #ffd42b;
  border-radius: 20px;
}
@media (width < 768px) {
  .event-card--mv .event-card__category-badge {
    padding: 4px 12px;
    font-size: 12px;
  }
}
.event-card--mv .event-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  margin-top: auto;
  padding-top: 24px;
}
.event-card--mv .event-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (width < 768px) {
  .event-card--mv .event-card__button {
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}
.event-card--mv .event-card__button--primary {
  color: #fff;
  background-color: #010b1c;
}
.event-card--mv .event-card__button--primary:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}
.event-card--mv .event-card__button--secondary {
  color: #000;
  background-color: #ffd42b;
}
.event-card--mv .event-card__button--secondary:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}
.event-card--mv .event-card__title {
  display: -webkit-box;
  min-height: 67.2px;
  overflow: hidden;
  font-size: 24px;
  line-height: 1.4;
  white-space: normal;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (width < 768px) {
  .event-card--mv .event-card__title {
    min-height: 42px;
    font-size: 15px;
  }
}
.event-card--mv .event-card__tag {
  font-size: 11px;
}

/* Simple ended styles: remove gradients/icons, darken image (only for actual event-end)
   MVカード(`event-card--mv`)は終了状態でも同じデザインにしたいため除外する */
.event-card.event-card--ended:not(.event-card--mv) .event-card__eyecatch-link::after,
.event-card.event-card--ended:not(.event-card--mv) .event-card__eyecatch-link::before {
  display: none !important;
}

.event-card.event-card--ended:not(.event-card--mv) .event-card__eyecatch {
  transform: scale(1.02);
  opacity: 1;
  filter: brightness(0.35);
}

.event-card.event-card--ended:not(.event-card--mv) .event-card__content {
  opacity: 1;
}

/* 終了後イベント: タイトルや補助テキストをグレー表示にする
   ただし MV は除外する */
.event-card.event-card--ended:not(.event-card--mv) .event-card__title,
.event-card.event-card--ended:not(.event-card--mv) .event-card__pickup,
.event-card.event-card--ended:not(.event-card--mv) .event-card__tags,
.event-card.event-card--ended:not(.event-card--mv) .event-card__tag,
.event-card.event-card--ended:not(.event-card--mv) .event-card__date,
.event-card.event-card--ended:not(.event-card--mv) .event-card__mv-subtitle,
.event-card.event-card--ended:not(.event-card--mv) .event-card__mv-title {
  color: rgba(0, 0, 0, 0.56);
}

.event-card.event-card--ended:not(.event-card--mv) .event-card__title-link {
  color: inherit;
}

/* stylelint-disable no-descending-specificity */
.c-special-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 141px;
  padding: 0 20px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 8px;
}
@media (width < 768px) {
  .c-special-feature {
    justify-content: center;
    height: auto;
    min-height: 85px;
    padding: 10px 20px;
  }
}
.c-special-feature__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.c-special-feature__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 328px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
}
@media (width < 768px) {
  .c-special-feature__body {
    max-width: 100%;
  }
}
.c-special-feature__title {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-special-feature__tags {
  display: flex;
  align-items: center;
}
.c-special-feature__tag {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  white-space: nowrap;
}
.c-special-feature__tag:not(:last-child)::after {
  margin: 0 16px;
  content: "|";
}
@media (width >= 1280px) {
  .c-special-feature--horizontal {
    height: 145px;
  }
  .c-special-feature--horizontal .c-special-feature__bg {
    object-position: center;
  }
  .c-special-feature--horizontal .c-special-feature__body {
    max-width: 328px;
  }
}

/* stylelint-disable no-descending-specificity */
.c-new-events {
  padding: 60px 40px 80px;
  background-color: #ffd42b;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events {
    padding: 48px 24px 60px;
  }
}
@media (width < 768px) {
  .c-new-events {
    padding: 40px 16px 60px;
  }
}
.c-new-events__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.c-new-events__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.c-new-events__title {
  font-weight: 700;
  font-size: 20px;
}
@media (width < 768px) {
  .c-new-events__title {
    font-size: 16px;
  }
}
.c-new-events__subtitle {
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  margin-top: 8px;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events__subtitle {
    font-size: 28px;
  }
}
@media (width < 768px) {
  .c-new-events__subtitle {
    font-size: 20px;
    -webkit-text-stroke-width: 0.6px;
  }
}
.c-new-events__more {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
@media (width < 768px) {
  .c-new-events__more {
    font-size: 12px;
  }
}
.c-new-events__more:hover {
  opacity: 0.7;
}
.c-new-events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events__grid {
    gap: 16px;
  }
}
@media (width < 768px) {
  .c-new-events__grid {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    overflow-x: auto;
  }
  .c-new-events__grid .event-card {
    flex: 0 0 80%;
  }
  .c-new-events__grid .event-card:only-child {
    flex: 0 0 100%;
  }
}
.c-new-events.event-detail-related {
  padding: 0 40px 80px;
  background-color: transparent;
}
@media (width < 1280px) and (width >= 768px) {
  .c-new-events.event-detail-related {
    padding: 0 24px 60px;
  }
}
@media (width < 768px) {
  .c-new-events.event-detail-related {
    padding: 0 16px 60px;
  }
}

/* stylelint-disable no-descending-specificity */
.blog-breadcrumb {
  padding: 16px 40px 0;
}
@media (width < 1280px) and (width >= 768px) {
  .blog-breadcrumb {
    padding: 16px 24px 0;
  }
}
@media (width < 768px) {
  .blog-breadcrumb {
    display: none;
  }
}
.blog-breadcrumb__inner {
  display: flex;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-breadcrumb__link {
  color: #000;
  font-weight: 500;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  line-height: 14px;
  text-decoration: none;
}
.blog-breadcrumb__link:hover {
  text-decoration: underline;
}
.blog-breadcrumb__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  color: #000;
}
.blog-breadcrumb__current {
  color: #000;
  font-weight: 500;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  line-height: 14px;
}

.blog-heading {
  padding: 40px 40px 0;
}
@media (width < 1280px) and (width >= 768px) {
  .blog-heading {
    padding: 32px 24px 0;
  }
}
@media (width < 768px) {
  .blog-heading {
    padding: 24px 16px 0;
  }
}
.blog-heading__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-heading__title {
  color: #000;
  font-weight: 800;
  font-size: 48px;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 24px;
}
@media (width < 768px) {
  .blog-heading__title {
    font-size: 32px;
  }
}
.blog-heading__subtitle-row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
@media (width < 768px) {
  .blog-heading__subtitle-row {
    gap: 20px;
  }
}
.blog-heading__line {
  display: block;
  width: 1px;
  height: 20px;
  background-color: #000;
}
.blog-heading__subtitle {
  color: #000;
  font-weight: 500;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  text-align: center;
}
@media (width < 768px) {
  .blog-heading__subtitle {
    font-size: 14px;
  }
}

.blog-main {
  padding: 40px 40px 60px;
}
@media (width < 1280px) and (width >= 768px) {
  .blog-main {
    padding: 32px 24px 48px;
  }
}
@media (width < 768px) {
  .blog-main {
    padding: 24px 16px 40px;
  }
}
.blog-main__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-search {
  margin-bottom: 40px;
}
.blog-search__row {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (width < 768px) {
  .blog-search__row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.blog-search__box {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 515px;
  padding: 12px 20px;
  border: 1px solid #000;
  border-radius: 24px;
}
@media (width < 1280px) and (width >= 768px) {
  .blog-search__box {
    width: 400px;
  }
}
@media (width < 768px) {
  .blog-search__box {
    width: 100%;
  }
}
.blog-search__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.blog-search__input {
  flex: 1;
  color: #0b0b0b;
  font-weight: 500;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background: transparent;
  border: none;
  outline: none;
}
.blog-search__input::placeholder {
  color: #999;
}
.blog-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (width < 768px) {
  .blog-search__tags {
    gap: 6px;
  }
}
.blog-search__tag {
  padding: 10px;
  color: #0b0b0b;
  font-weight: 500;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  white-space: nowrap;
  background-color: #f2f2f2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.blog-search__tag:hover {
  background-color: #e0e0e0;
}
.blog-search__tag--active {
  color: #fff;
  background-color: #000;
}
.blog-search__tag--active:hover {
  background-color: #333;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
@media (width < 768px) {
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.blog-meta__count {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.blog-meta__count span {
  font-size: 24px;
  margin: 0 4px;
  font-family: "Roboto", sans-serif;
}
.blog-meta__select {
  appearance: none;
  padding: 8px 32px 8px 16px;
  color: #000;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: transparent;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="%230b0b0b" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid #000;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
}
.blog-meta__select:focus {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 5L5 1L9 5" stroke="%230b0b0b" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.blog-list {
  margin-bottom: 40px;
}
.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px;
}
@media (width < 768px) {
  .blog-list__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.blog-list__empty {
  padding: 60px 0;
  color: #666;
  font-size: 16px;
  text-align: center;
}

.blog-pagination {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.blog-pagination__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  color: #000;
  font-weight: 400;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.blog-pagination__num:hover {
  color: #fff;
  background-color: #000;
}
.blog-pagination__num--current {
  color: #fff;
  background-color: #000;
}
.blog-pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  color: #000;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}
.blog-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.blog-pagination__arrow:hover {
  color: #fff;
  background-color: #000;
}
.blog-pagination__arrow svg {
  display: block;
}

.blog-special {
  padding: 0 40px;
  margin-bottom: 60px;
}
@media (width < 1280px) and (width >= 768px) {
  .blog-special {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .blog-special {
    padding: 0 16px;
    margin-bottom: 40px;
  }
}
.blog-special__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-special__header {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.blog-special__title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-special__label {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  line-height: 23px;
}
.blog-special__title {
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-style: italic;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  line-height: 40px;
}
@media (width < 768px) {
  .blog-special__title {
    font-size: 28px;
    line-height: 28px;
  }
}
.blog-special__more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #000;
  font-weight: 800;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  line-height: 18px;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 20px;
  transition: 0.3s ease;
}
.blog-special__more:hover {
  color: #fff;
  background-color: #000;
}
@media (width < 768px) {
  .blog-special__more {
    padding: 8px 16px;
    font-size: 10px;
  }
}
.blog-special__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
@media (width < 768px) {
  .blog-special__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.c-company-cta {
  padding: 0 40px;
}
@media (width < 1280px) and (width >= 768px) {
  .c-company-cta {
    padding: 0 24px;
  }
}
@media (width < 768px) {
  .c-company-cta {
    padding: 0 16px;
  }
}
.c-company-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #010b1c;
  border-radius: 8px;
}
@media (width < 768px) {
  .c-company-cta__inner {
    padding: 14px 10px;
  }
}
.c-company-cta__content {
  display: flex;
  gap: 38px;
  align-items: center;
}
@media (width < 768px) {
  .c-company-cta__content {
    gap: 14px;
  }
}
.c-company-cta__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 9px;
}
@media (width < 768px) {
  .c-company-cta__text {
    flex: 1;
    min-width: 0;
  }
}
.c-company-cta__title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
@media (width < 768px) {
  .c-company-cta__title {
    font-size: 13px;
  }
}
.c-company-cta__description {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
@media (width < 768px) {
  .c-company-cta__description {
    font-size: 8px;
  }
}
.c-company-cta__buttons {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (width < 768px) {
  .c-company-cta__buttons {
    flex-direction: column;
    gap: 8px;
  }
}
.c-company-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-weight: 800;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  letter-spacing: 6px;
  white-space: nowrap;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (width < 768px) {
  .c-company-cta__btn {
    padding: 6px 20px;
    font-size: 10px;
  }
}
.c-company-cta__btn:hover {
  opacity: 0.8;
}
.c-company-cta__btn--primary {
  color: #000;
  background-color: #ffd42b;
  border: none;
}
.c-company-cta__btn--secondary {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.blog-cta {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (width < 768px) {
  .blog-cta {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.blog-new-events {
  margin-top: 0;
  background-color: transparent;
}
