:root{
  --row-gutter: 30px;
}
.communication-main {
  padding-top: 25px;
}
.communication-page {
  background: #fff;
  padding: var(--row-gutter);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}
.comm-entry-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: var(--row-gutter);
}
.comm-entry-item {
  color: #333;
  font-weight: 600;
  flex: 1;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #DBE4F2;
  box-shadow: 0 2px 8px rgba(83, 146, 225, .15);
  transition: box-shadow .2s, transform .2s;
}
.comm-entry-item:hover {
  box-shadow: 0 4px 12px rgba(83, 146, 225, .25);
  color: #333;
}
.comm-entry-icon {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
}
.comm-entry-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comm-entry-list .comm-entry-item:nth-child(1) {
  background: linear-gradient(0deg, #fef2f2,#ffffff);;
}
.comm-entry-list .comm-entry-item:nth-child(2) {
  background: linear-gradient(0deg, #fef1e8,#ffffff);
}
.comm-entry-list .comm-entry-item:nth-child(3) {
  background: linear-gradient(0deg, #e9f4fe,#ffffff);
}
.comm-entry-list .comm-entry-item:nth-child(4) {
  background: linear-gradient(0deg, #e6faf4,#ffffff);
}
.comm-entry-list .comm-entry-item:nth-child(5) {
  background: linear-gradient(0deg, #f1f1ff,#ffffff);
}
.common-tabs .common-tabs__header{
  margin-bottom: var(--row-gutter);
}
.comm-body {
  display: flex;
  align-items: flex-start;
  gap: var(--row-gutter);
  margin-bottom: var(--row-gutter);
}
.comm-left {
  flex: 2;
  min-width: 0;
}
.comm-right {
  flex: 1;
  min-width: 0;
}
.comm-table-wrap {
  overflow-x: auto;
}
.comm-letter-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-base);
}
.comm-letter-table thead th {
  background: #DCEDFF;
  color: #2257AB;
  padding: 10px 8px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.comm-letter-table tbody {
  font-size: calc(var(--font-size-base) - 1px);
}
.comm-letter-table tbody tr:nth-child(even) {
  background: #EEF4F9;
}
.comm-letter-table tbody td {
  padding: 10px 8px;
  text-align: center;
  color: #333;
}
.comm-letter-table tbody tr:last-child td {
  border-bottom: none;
}
.comm-letter-table tbody td:first-child {
  text-align: left;
  max-width: 220px;
}
.comm-letter-table tbody td:first-child a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
.comm-letter-table tbody td:first-child a:hover {
  color: #1e5aab;
}
.comm-letter-table .status-done {
  color: #e60012;
}
.comm-stat-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.comm-stat-card {
  flex: 1;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #E8F4FF;
  border-radius: 4px;
}
.comm-stat-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  flex-shrink: 0;
}
.comm-stat-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comm-stat-text {
  color: #40424F;
}
.comm-stat-text strong {
  color: #1e5aab;
  font-weight: 600;
  font-size: var(--font-size-title);
}
.comm-chart {
  width: 100%;
  height: 230px;
}
.comm-bottom {
  display: flex;
  align-items: flex-start;
  gap: var(--row-gutter);
}
.comm-bottom-left,
.comm-bottom-right {
  flex: 1;
  min-width: 0;
}
.comm-interview-main {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--row-gutter);
  background: #F3F8FF;
}
.comm-interview-cover {
  flex: 1;
  flex-shrink: 0;
  padding: 15px;
}
.comm-interview-cover img {
  display: block;
  width: 100%;
  height: 200px;
  /* object-fit: cover; */
}
.comm-interview-info {
  flex: 1;
  min-width: 0;
  padding: 20px;
  color: #999;
}
.comm-interview-title {
  display: block;
  margin-bottom: 10px;
  font-size: calc(var(--font-size-base) + 2px);
  font-weight: 600;
  color: #2257AB;
}
.comm-interview-title:hover {
  color: #125DB2;
}
.comm-interview-info p {
  margin-bottom: 5px;
}
.comm-interview-summary-box {
  position: relative;
}
.comm-interview-summary-box .comm-interview-summary {
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.comm-interview-summary-box .summary-more {
  display: none;
  color: #1e5aab;
}
.comm-interview-summary-box.is-overflow .summary-more {
  display: inline;
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(243, 248, 255, 0), #F3F8FF 12px, #F3F8FF);
  padding-left: 14px;
}
.summary-more:hover {
  color: #125DB2;
}
.comm-interview-preview {
  display: flex;
  background: #F3F8FF;
  height: 110px;
  align-items: center;
}
.comm-preview-badge {
  height: 100%;
}
.comm-preview-badge img {
  height: 100%;
}
.comm-preview-info {
  flex: 1;
  min-width: 0;
  padding: 10px;
}
.comm-preview-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: calc(var(--font-size-base) + 2px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comm-preview-title:hover {
  color: #1e5aab;
}
.comm-preview-info p {
  margin: 0;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comm-survey-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.comm-survey-item {
  display: flex;
  align-items: center;
  padding: 20px 0 20px 20px;
  background: #F3F8FF;
  min-height: 110px;
}
.comm-survey-status {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #fff;
}
.comm-survey-status.is-active {
  background: #2257AB;
}
.comm-survey-status.is-end {
  background: #C2CEDE;
}
.comm-survey-info {
  flex: 1;
  min-width: 0;
  margin-right: 12px;
}
.comm-survey-title {
  font-size: calc(var(--font-size-base) + 2px);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comm-survey-title:hover {
  color: #1e5aab;
}
.comm-survey-info p {
  margin: 0;
  color: #999;
}
.comm-survey-btn {
  flex-shrink: 0;
  padding: 5px 20px;
  border-radius: 19px 0 0 19px;
  background: #dcedff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-survey-btn:hover {
  color: #1e5aab;
}
@media only screen and (max-width: 992px) {
  .comm-entry-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .comm-body {
    flex-direction: column;
  }
  .comm-left, .comm-right {
    width: 100%;
  }
  .comm-bottom {
    flex-direction: column;
  }
  .comm-bottom-left,.comm-bottom-right {
    width: 100%;
  }
  .comm-interview-main {
    flex-direction: column;
  }
  .comm-interview-cover {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --row-gutter: 15px;
  }
  .communication-main{
    padding-top: var(--row-gutter);
  }
  .layout-width {
    padding: 0 var(--row-gutter);
  }
  .comm-entry-list {
    gap: 10px;
  }
  .comm-entry-item {
    min-height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .comm-entry-icon {
    width: 40px;
    height: 40px;
  }
  .comm-entry-text {
    font-size: var(--font-size-small);
  }
  .comm-stat-cards {
    flex-direction: column;
  }
  .comm-stat-card:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .comm-survey-item {
    flex-wrap: wrap;
    min-height: 80px;
    padding: 10px 0 10px 10px;
  }
  .comm-survey-status {
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: normal;
  }
  .comm-survey-title {
    margin-bottom: 6px;
  }
  .comm-interview-info {
    padding: 10px;
  }
  .comm-interview-preview {
    height: 80px;
  }
}
