/* download button */
.content-wrap a[download] {
  display: inline-flex;
  align-items: center;
  background-color: #2B2B3B;
  color: #fff;
  padding: 6px 16px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.content-wrap a[download]:hover {
  text-decoration: none;
}

.content-wrap a[download] svg {
  margin-right: 8px;
}

/* page header button */
.page-header .content-wrap a.announcement {
  margin: 16px 0 0;
  display: inline-flex;
  height: 36px;
  padding: 9px 44px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #5465E4;
  background-color: #fff;
  color: #5465E4;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 724px) {
  .page-header .content-wrap a.announcement {
    margin-top: 24px;
  }
}

/* list page */
.announcement-list .content-wrap {
  padding-top: 56px;
}

/* list table */
.announcement-list table {
  width: 100%;
  border-spacing: 0;
  border: 1px solid #E3E2EB;
  border-radius: 8px;
}

@media (max-width: 724px) {
  .announcement-list table .category,
  .announcement-list table .download,
  .announcement-list table th.date {
    display: none;
  }
}

@media (max-width: 724px) {
  .announcement-list table tr {
    display: flex;
    flex-direction: column;
  }
}

.announcement-list table th {
  font-size: 13px;
  font-weight: 500;
  color: #393847;
  background-color: #EFEFF5;
  text-align: left;
  padding: 11px 16px;
}

.announcement-list table td {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 11px 16px;
  border-top: 1px solid #E3E2EB;
}
.announcement-list table td.category,
.announcement-list table td.date {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}
@media (max-width: 724px) {
  .announcement-list table td.date {
    border-top: 0 none;
    padding-top: 0;
  }
}

.announcement-list a {
  color: var(--text-primary);
  text-decoration: none;
}
.announcement-list a:hover {
  text-decoration: underline;
}

/* view page */
.announcement-view header {
  padding-top: 88px;
}
@media (min-width: 809px) {
  .announcement-view header {
    padding-top: 144px;
  }
}

.announcement-view header .content-wrap {
  padding-bottom: 0;
}

.announcement-view header .download span {
  display: inline-block;
  margin-right: 24px;
  margin-bottom: 16px;
}

.announcement-view header hr {
  margin: 16px 0 0;
  border: 0 none;
  border-bottom: 1px solid #E7E7EE;
}
@media (min-width: 809px) {
  .announcement-view header hr {
    margin: 24px 0 0;
  }
}

.announcement-view header h1 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 809px) {
  .announcement-view header h1 {
    font-size: 40px;
  }
}

.announcement-view header .date {
  margin: 24px 0;
  color: var(--text-secondary);
}

.announcement-body .content-wrap {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-bottom: 64px;
}

.announcement-body .wp-caption[style] {
  width: auto !important;
}

.announcement-body img {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.announcement-view .announcement-list {
  margin-bottom: 120px;
}

.announcement-view .announcement-list .go-list {
  margin: 24px 0 0;
  text-align: right;
  font-weight: 500;
}
