/*
 * /grafik and /cennik (P5-grafik-cennik): the timetable and the price list
 * as plain readable tables, loaded only on those two pages through the
 * layout's `head` section. assets/css/style.css is read-only, so the table,
 * the per-day cards and the aside boxes live here. Theme colours: #ed342c
 * accent, #16161a dark, Teko headings, Barlow body.
 */

.pt-page {
  padding: 80px 0 90px;
}

.pt-page__lede {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: #555;
}

.pt-page__lede a {
  color: #ed342c;
  text-decoration: underline;
}

.pt-page__empty {
  max-width: 720px;
  margin: 0 auto 50px;
  padding: 26px 30px;
  background: #f6f6f6;
  border-left: 4px solid #ed342c;
  font-size: 18px;
  text-align: center;
}

/* ---- tables --------------------------------------------------------------- */

.pt-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 16px;
  color: #333;
}

.pt-table th,
.pt-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  text-align: left;
}

.pt-table thead th {
  font-family: "Teko", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: #16161a;
  border-bottom: 3px solid #ed342c;
}

.pt-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.pt-table tbody tr:hover {
  background: #fff3f2;
}

.pt-table strong {
  color: #16161a;
}

.pt-table__sub {
  display: block;
  color: #777;
  font-size: 14px;
}

.pt-table__time {
  white-space: nowrap;
  width: 1%;
  font-family: "Teko", sans-serif;
  font-size: 22px;
  color: #ed342c;
}

.pt-table__price {
  white-space: nowrap;
  text-align: right !important;
  font-family: "Teko", sans-serif;
  font-size: 24px;
}

.pt-table__price del {
  color: #999;
  font-size: 18px;
  margin-right: 6px;
}

.pt-table tr.is-featured td {
  background: #fff8e1;
}

.pt-table tr.is-featured strong::after {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f5b301;
  font-size: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

.pt-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  background: #16161a;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}

.pt-badge--promo {
  background: #ed342c;
}

/* ---- /grafik: one card per day ------------------------------------------- */

.pt-day {
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.pt-day__name {
  margin: 0;
  padding: 12px 14px 8px;
  font-family: "Teko", sans-serif;
  font-size: 30px;
  color: #16161a;
  background: #fff;
  border-top: 4px solid #ed342c;
}

/* ---- /cennik: one group per category ------------------------------------- */

.pt-price-group {
  margin-bottom: 50px;
}

.pt-price-group__name {
  font-family: "Teko", sans-serif;
  font-size: 34px;
  color: #16161a;
  margin-bottom: 4px;
}

.pt-price-group__lede {
  color: #777;
  margin-bottom: 16px;
}

/* ---- aside boxes ---------------------------------------------------------- */

.pt-aside {
  margin-top: 20px;
}

.pt-box {
  height: 100%;
  padding: 30px 32px;
  background: #f6f6f6;
  border-left: 4px solid #ed342c;
  margin-bottom: 30px;
}

.pt-box h3 {
  font-family: "Teko", sans-serif;
  font-size: 30px;
  color: #16161a;
  margin-bottom: 14px;
}

.pt-box h3 i {
  color: #ed342c;
  font-size: 20px;
  margin-right: 6px;
}

.pt-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-box ul li p {
  margin-bottom: 6px;
  color: #444;
}

.pt-box ul li p i {
  color: #ed342c;
  margin-right: 6px;
}

.pt-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #444;
}

.pt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #ed342c;
}

.pt-box--dark {
  background: #16161a;
  color: #fff;
}

.pt-box--dark h3 {
  color: #fff;
}

.pt-box--dark p {
  color: #ddd;
}

.pt-box--dark .header-btn {
  margin: 6px 8px 6px 0;
}
