/* === Montserrat LOCAL Fonts === */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/themes/ae-server/assets/src/fonts/montserrat-v30-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/themes/ae-server/assets/src/fonts/montserrat-v30-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/wp-content/themes/ae-server/assets/src/fonts/montserrat-v30-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/wp-content/themes/ae-server/assets/src/fonts/montserrat-v30-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/wp-content/themes/ae-server/assets/src/fonts/montserrat-v30-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/wp-content/themes/ae-server/assets/src/fonts/montserrat-v30-latin-700italic.woff2') format('woff2');
}

.author-box {
    margin: 60px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.author-box__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-box__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box__info {
    flex: 1;
}

.author-box__name {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.author-box__bio {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}



.pagination {
  margin-top: 30px;
  text-align: center;
}
.pagination a, .pagination span {
  display: inline-block;
  margin: 0 10px;
  padding: 6px 12px;
  background: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}
.pagination .current {
  background: #333;
  color: #fff;
}

.whois-block {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
    color: #333;
    font-family: 'Menlo', 'Monaco', 'Consolas', 'Courier New', monospace;
    position: relative;
	text-align: left;
}

.whois-block pre {
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    tab-size: 4;
}

.whois-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #c62127;
    border-radius: 8px 0 0 8px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.table-cell-domain {
    font-weight: 600;
    color: #202124;
}

.table-cell-status {
    padding: 6px 12px;
    background: #e8f0fe;
    color: #1967d2;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

/* Для ссылки в домене */
.table-cell-domain a {
    color: #c62127;
    text-decoration: none;
    transition: color 0.2s;
}

.table-cell-domain a:hover {
    color: #d36d70;
    text-decoration: underline;
}

/* Для лучшего отображения WHOIS данных */
.whois-block pre {
    color: #5f6368;
    line-height: 1.7;
}

/* Подсветка важных полей в WHOIS */
.whois-block pre strong {
    color: #202124;
    font-weight: 600;
}


