@font-face {
    font-family: 'Blinker';
    src: url('../fonts/Blinker/blinker-regular-webfont.woff2') format('woff2'),
         url('../fonts/Blinker/blinker-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.oowcode-blinker-thin {
  font-family: "Blinker", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.oowcode-blinker-extralight {
  font-family: "Blinker", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.oowcode-blinker-light {
  font-family: "Blinker", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.oowcode-blinker-regular {
  font-family: "Blinker", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.oowcode-blinker-semibold {
  font-family: "Blinker", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.oowcode-blinker-bold {
  font-family: "Blinker", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.oowcode-blinker-extrabold {
  font-family: "Blinker", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.oowcode-blinker-black {
  font-family: "Blinker", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.oowcode-plugin-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.oowcode-plugin-card {
    background: #fff;
    border: 1px solid #ddd;
    width: calc(25% - 20px);
    margin: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .oowcode-plugin-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .oowcode-plugin-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .oowcode-plugin-card {
        width: 100%;
    }
}

.oowcode-header-h1 {
    padding-bottom: 18px!important;
    font-family: "Blinker", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.oowcode-plugin-icon {
    width: 100%;
    padding-top: 56.25%; /* Ratio 16:9 */
    position: relative;
    background-color: #f1f1f1;
}

.oowcode-plugin-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.oowcode-no-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
}

.oowcode-plugin-info {
    padding: 15px;
    flex-grow: 1;
}

.oowcode-plugin-info h3 {
    margin: 0 0 10px;
}

.oowcode-plugin-status {
    padding: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.oowcode-status-installed {
    color: green;
    font-weight: bold;
}
