:root {
  --calendar-point-color:var(--main-color);
  --calendar-font-color:#333;
  --calendar-bak-color:#fff;
}

@font-face {
  font-family: 'Freesentation-5Medium';
  src: url('https://cdn.jsdelivr.net/gh/fontbee/font@main/Freesentation/Freesentation-5Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.new-calendar-skin {
  padding: 20px;
  font-family: 'Freesentation-5Medium', sans-serif;
  color:var(--calendar-font-color);
}

.new-calendar-skin h2 {
  text-align: center;
  color: var(--calendar-point-color);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
}

.new-calendar-skin .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px 2px;
  overflow: hidden;
}

.new-calendar-skin .calendar-header {
  grid-column: 1 / 8;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--calendar-bak-color);
  padding: 4px 0;
  margin-bottom: 8px;
}

.new-calendar-skin .calendar-header>div {
  text-align: center;
  font-size: 12px;
}

.new-calendar-skin .calendar-day {
position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 8px;
}

.new-calendar-skin .day-number {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.new-calendar-skin .today {}

.new-calendar-skin .today .day-number {
    position: relative;
    font-weight: bold;
    background: var(--calendar-font-color);
    border-radius: 100%;
    color: var(--calendar-bak-color);
}

.new-calendar-skin .post-title {
  text-align: center;
  line-height: 100%;
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 4px 0;
}

.new-calendar-skin .post-title a {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--calendar-point-color);
  border-radius: 100%;
}

.new-calendar-skin .post-title span {
  white-space: nowrap;
  word-break: break-all;
  display: block;
  width: 100%;
}

.new-calendar-skin .more-posts {}

.new-calendar-skin .more-posts a {
  opacity: 0.7;
  background: var(--calendar-point-color);
  width: 5px;
  height: 5px;
  border-radius: 100%;
}