/*!
 * ------------------------------------------------------------
 * MyXiaoyao Starter Theme
 * Reset CSS
 * ------------------------------------------------------------
 * Author : MyXiaoyao
 * Version: 1.0.0
 * ------------------------------------------------------------
 */

/* ============================================================
   Box Model
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ============================================================
   HTML
   ============================================================ */

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ============================================================
   Body
   ============================================================ */

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1rem;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "PingFang SC",
        "Microsoft YaHei",
        "Noto Sans KR",
        sans-serif;
    color: #333;
    background: #ffffff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Headings
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin: 0 0 1rem;
}

/* ============================================================
   Link
   ============================================================ */

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    text-decoration: none;
}

/* ============================================================
   Image
   ============================================================ */

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

/* WordPress 图片 */
.wp-post-image,
.custom-logo {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   List
   ============================================================ */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ============================================================
   Table
   ============================================================ */

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

/* ============================================================
   Form
   ============================================================ */

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

/* ============================================================
   HR
   ============================================================ */

hr {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 2rem 0;
}

/* ============================================================
   Code
   ============================================================ */

code,
pre {
    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;
}

pre {
    overflow: auto;
}

/* ============================================================
   Blockquote
   ============================================================ */

blockquote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid #dddddd;
}

/* ============================================================
   Selection
   ============================================================ */

::selection {
    background: #d8e8ff;
    color: #000;
}

/* ============================================================
   Focus
   ============================================================ */

:focus-visible {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* ============================================================
   WordPress Alignments
   ============================================================ */

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

/* ============================================================
   Screen Reader
   ============================================================ */

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.screen-reader-text:focus {
    left: 10px;
    top: 10px;
    z-index: 99999;
    background: #fff;
    padding: 10px;
}